diff --git a/build.gradle b/build.gradle index 36e04ac..5fcde0f 100644 --- a/build.gradle +++ b/build.gradle @@ -1,252 +1,94 @@ -plugins { - id 'eclipse' - id 'idea' - id 'maven-publish' - id 'java-library' - id 'net.minecraftforge.gradle' version '[6.0,6.2)' - id 'org.parchmentmc.librarian.forgegradle' version '1.+' -} - -version = mod_version -group = mod_group_id - -base { - archivesName = mod_id -} - -java { - - withSourcesJar() - withJavadocJar() -} - -configurations { - provided - minecraftLibrary.extendsFrom(provided) -} - -// Mojang ships Java 17 to end users in 1.18+, so your mod should target Java 17. -java.toolchain.languageVersion = JavaLanguageVersion.of(17) - -println "Java: ${System.getProperty 'java.version'}, JVM: ${System.getProperty 'java.vm.version'} (${System.getProperty 'java.vendor'}), Arch: ${System.getProperty 'os.arch'}" -minecraft { - // The mappings can be changed at any time and must be in the following format. - // Channel: Version: - // official MCVersion Official field/method names from Mojang mapping files - // parchment YYYY.MM.DD-MCVersion Open community-sourced parameter names and javadocs layered on top of official - // - // You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. - // See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md - // - // Parchment is an unofficial project maintained by ParchmentMC, separate from MinecraftForge - // Additional setup is needed to use their mappings: https://github.com/ParchmentMC/Parchment/wiki/Getting-Started - // - // Use non-default mappings at your own risk. They may not always work. - // Simply re-run your setup task after changing the mappings to update your workspace. - mappings channel: mapping_channel, version: "${parchment_version}-${minecraft_version}" - - // When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game. - // In most cases, it is not necessary to enable. - // enableEclipsePrepareRuns = true - // enableIdeaPrepareRuns = true - - // This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game. - // It is REQUIRED to be set to true for this template to function. - // See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html - copyIdeResources = true - - // When true, this property will add the folder name of all declared run configurations to generated IDE run configurations. - // The folder name can be set on a run configuration using the "folderName" property. - // By default, the folder name of a run configuration is the name of the Gradle project containing it. - // generateRunFolders = true - - // This property enables access transformers for use in development. - // They will be applied to the Minecraft artifact. - // The access transformer file can be anywhere in the project. - // However, it must be at "META-INF/accesstransformer.cfg" in the final mod jar to be loaded by Forge. - // This default location is a best practice to automatically put the file in the right place in the final jar. - // See https://docs.minecraftforge.net/en/latest/advanced/accesstransformers/ for more information. - accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg') - - // Default run configurations. - // These can be tweaked, removed, or duplicated as needed. - runs { - // applies to all the run configs below - configureEach { - workingDirectory project.file('run') - - // Recommended logging data for a userdev environment - // The markers can be added/remove as needed separated by commas. - // "SCAN": For mods scan. - // "REGISTRIES": For firing of registry events. - // "REGISTRYDUMP": For getting the contents of all registries. - property 'forge.logging.markers', 'REGISTRIES' - - // Recommended logging level for the console - // You can set various levels here. - // Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels - property 'forge.logging.console.level', 'debug' - - // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. - property 'forge.enabledGameTestNamespaces', mod_id - - mods { - "${mod_id}" { - source sourceSets.main - } - } - } - - client { - // Comma-separated list of namespaces to load gametests from. Empty = all namespaces. - property 'forge.enabledGameTestNamespaces', mod_id - } - - server { - property 'forge.enabledGameTestNamespaces', mod_id - args '--nogui' - } - - // This run config launches GameTestServer and runs all registered gametests, then exits. - // By default, the server will crash when no gametests are provided. - // The gametest system is also enabled by default for other run configs under the /test command. - gameTestServer { - property 'forge.enabledGameTestNamespaces', mod_id - } - - data { - // example of overriding the workingDirectory set in configureEach above - workingDirectory project.file('run-data') - - // Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources. - args '--mod', mod_id, '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') - } - } -} - -// Include resources generated by data generators. -sourceSets.main.resources { srcDir 'src/generated/resources' } - -repositories { - mavenCentral() - // Put repositories for dependencies here - // ForgeGradle automatically adds the Forge maven and Maven Central for you - - // If you have mod jar dependencies in ./libs, you can declare them as a repository like so: - flatDir { - dir 'libs' - } - - //maven { - // name = "CurseMaven" - // url = "https://cursemaven.com" - //} - - maven { - name = "zontreck Maven" - url = "https://git.zontreck.com/api/packages/MinecraftMods/maven" - } - -} - -dependencies { - // Specify the version of Minecraft to use. - // Any artifact can be supplied so long as it has a "userdev" classifier artifact and is a compatible patcher artifact. - // The "userdev" classifier will be requested and setup by ForgeGradle. - // If the group id is "net.minecraft" and the artifact id is one of ["client", "server", "joined"], - // then special handling is done to allow a setup of a vanilla dependency without the use of an external repository. - minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" - - provided "dev.zontreck:MinecraftMods_LibZontreck_1.19.2:${libzontreck}" - - // Example mod dependency with JEI - using fg.deobf() ensures the dependency is remapped to your development mappings - // The JEI API is declared for compile time use, while the full JEI artifact is used at runtime - // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-common-api:${jei_version}") - // compileOnly fg.deobf("mezz.jei:jei-${mc_version}-forge-api:${jei_version}") - // runtimeOnly fg.deobf("mezz.jei:jei-${mc_version}-forge:${jei_version}") - - // Example mod dependency using a mod jar from ./libs with a flat dir repository - // This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar - // The group id is ignored when searching -- in this case, it is "blank" - // implementation fg.deobf("blank:coolmod-${mc_version}:${coolmod_version}") - - // For more info: - // http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html - // http://www.gradle.org/docs/current/userguide/dependency_management.html -} - -// This block of code expands all declared replace properties in the specified resource targets. -// A missing property will result in an error. Properties are expanded using ${} Groovy notation. -// When "copyIdeResources" is enabled, this will also run before the game launches in IDE environments. -// See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html -tasks.named('processResources', ProcessResources).configure { - var replaceProperties = [ - minecraft_version: minecraft_version, minecraft_version_range: minecraft_version_range, - forge_version: forge_version, forge_version_range: forge_version_range, - loader_version_range: loader_version_range, - mod_id: mod_id, mod_name: mod_name, mod_license: mod_license, mod_version: mod_version, - mod_authors: mod_authors, mod_description: mod_description, libzontreck_id: libzontreck_id, libzontreck_range: libzontreck_range - ] - inputs.properties replaceProperties - - filesMatching(['META-INF/mods.toml', 'pack.mcmeta']) { - expand replaceProperties + [project: project] - } -} - - -// Example for how to get properties into the manifest for reading at runtime. -tasks.named('jar', Jar).configure { - duplicatesStrategy = DuplicatesStrategy.EXCLUDE - - manifest { - attributes([ - 'Specification-Title' : mod_id, - 'Specification-Vendor' : mod_authors, - 'Specification-Version' : '1', // We are version 1 of ourselves - 'Implementation-Title' : project.name, - 'Implementation-Version' : project.jar.archiveVersion, - 'Implementation-Vendor' : mod_authors, - 'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ") - ]) - } - - // This is the preferred method to reobfuscate your jar file - finalizedBy 'reobfJar' -} - -// However if you are in a multi-project build, dev time needs unobfed jar files, so you can delay the obfuscation until publishing by doing: -// tasks.named('publish').configure { -// dependsOn 'reobfJar' -// } - - -def MAVEN_PASSWORD = "AriasCreationsMavenPassword" -def MAVEN_USER = "AriasCreationsMavenUser" - -publishing { - publications { - mavenJava(MavenPublication) { - artifact jar - artifact sourcesJar - artifact javadocJar - } - } - - repositories { - maven { - url = "https://git.zontreck.com/api/packages/MinecraftMods/maven" - name = "ariascreations" - - credentials { - username = project.findProperty(MAVEN_USER) - password = project.findProperty(MAVEN_PASSWORD) - } - } - } -} - - -tasks.withType(JavaCompile).configureEach { - options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation -} \ No newline at end of file +plugins { + id 'dev.architectury.loom' version '1.6-SNAPSHOT' + id 'maven-publish' +} + +group = project.maven_group +version = project.mod_version + +base { + archivesName = project.archives_name +} + +loom { + silentMojangMappingsLicense() + + forge { + mixinConfig 'ariasessentials.mixins.json' + } +} + +repositories { + // Add repositories to retrieve artifacts from in here. + // You should only use this when depending on other mods because + // Loom adds the essential maven repositories to download Minecraft and libraries from automatically. + // See https://docs.gradle.org/current/userguide/declaring_repositories.html + // for more information about repositories. + + maven { + // location of the maven that hosts JEI files before January 2023 + name = "Progwml6's maven" + url = "https://dvs1.progwml6.com/files/maven/" + } + maven { + // location of the maven that hosts JEI files since January 2023 + name = "Jared's maven" + url = "https://maven.blamejared.com/" + } + maven { + // location of a maven mirror for JEI files, as a fallback + name = "ModMaven" + url = "https://modmaven.dev" + } +} + +dependencies { + minecraft "net.minecraft:minecraft:$project.minecraft_version" + mappings loom.officialMojangMappings() + forge "net.minecraftforge:forge:$project.forge_version" + + + // compile against the JEI API but do not include it at runtime + modCompileOnly "mezz.jei:jei-${minecraft_version}-forge-api:${jei_version}" + // at runtime, use the full JEI jar + modRuntimeOnly "mezz.jei:jei-${minecraft_version}-forge:${jei_version}" +} + +processResources { + inputs.property 'version', project.version + + filesMatching('META-INF/mods.toml') { + 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() + + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 +} + +tasks.withType(JavaCompile).configureEach { + it.options.release = 17 +} + +// Configure Maven publishing. +publishing { + publications { + mavenJava(MavenPublication) { + from components.java + } + } + + // See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing. + repositories { + // Add repositories to publish to here. + // Notice: This block does NOT have the same function as the block in the top level. + // The repositories here will be used for publishing your artifact, not for + // retrieving dependencies. + } +} diff --git a/gradle.properties b/gradle.properties index 320de4e..2879717 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,62 +1,15 @@ -# Sets default memory used for gradle commands. Can be overridden by user or command line properties. -# This is required to provide enough memory for the Minecraft decompilation process. -org.gradle.jvmargs=-Xmx3G -Dfile.encoding=utf-8 -org.gradle.daemon=false +# Done to increase the memory available to Gradle. +org.gradle.jvmargs=-Xmx1G +loom.platform = forge -libzontreck=1192.13.100924.2250 -libzontreck_id=libzontreck -libzontreck_range=[1192.13,1192.14) +# Mod properties +mod_version = 1192.2.102824.1841 +maven_group = com.zontreck +archives_name = ariasessentials -## Environment Properties +# Minecraft properties +minecraft_version = 1.19.2 -# The Minecraft version must agree with the Forge version to get a valid artifact -minecraft_version=1.19.2 -# The Minecraft version range can use any release version of Minecraft as bounds. -# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly -# as they do not follow standard versioning conventions. -minecraft_version_range=[1.19.2,1.20) -# The Forge version must agree with the Minecraft version to get a valid artifact -forge_version=43.4.2 -# The Forge version range can use any version of Forge as bounds or match the loader version range -forge_version_range=[43,) -# The loader version range can only use the major version of Forge/FML as bounds -loader_version_range=[43,) -# The mapping channel to use for mappings. -# The default set of supported mapping channels are ["official", "snapshot", "snapshot_nodoc", "stable", "stable_nodoc"]. -# Additional mapping channels can be registered through the "channelProviders" extension in a Gradle plugin. -# -# | Channel | Version | | -# |-----------|----------------------|--------------------------------------------------------------------------------| -# | official | MCVersion | Official field/method names from Mojang mapping files | -# | parchment | YYYY.MM.DD-MCVersion | Open community-sourced parameter names and javadocs layered on top of official | -# -# You must be aware of the Mojang license when using the 'official' or 'parchment' mappings. -# See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md -# -# Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge. -# Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started -mapping_channel=parchment -# The mapping version to query from the mapping channel. -# This must match the format required by the mapping channel. -parchment_version=2022.11.27 -# luckperms_api_version=5.4 - -## Mod Properties - -# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63} -# Must match the String constant located in the main mod class annotated with @Mod. -mod_id=ariasessentials -# The human-readable display name for the mod. -mod_name=Aria's Essentials -# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default. -mod_license=GPLv3 -# The mod version. See https://semver.org/ -mod_version=1192.3.100924.2300 -# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository. -# This should match the base package used for the mod sources. -# See https://maven.apache.org/guides/mini/guide-naming-conventions.html -mod_group_id=dev.zontreck -# The authors of the mod. This is a simple text string that is used for display purposes in the mod list. -mod_authors=zontreck -# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. -mod_description=A mod with custom commands that are essential \ No newline at end of file +# Dependencies +forge_version = 1.19.2-43.4.0 +jei_version = 11.6.0.1024 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar index c1962a7..e644113 100644 Binary files a/gradle/wrapper/gradle-wrapper.jar and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2617362..a441313 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -2,5 +2,6 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew index a69d9cb..1aa94a4 100755 --- a/gradlew +++ b/gradlew @@ -55,7 +55,7 @@ # Darwin, MinGW, and NonStop. # # (3) This script is generated from the Groovy template -# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt # within the Gradle project. # # You can find Gradle at https://github.com/gradle/gradle/. @@ -80,13 +80,11 @@ do esac done -APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit - -APP_NAME="Gradle" +# This is normally unused +# shellcheck disable=SC2034 APP_BASE_NAME=${0##*/} - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. MAX_FD=maximum @@ -133,22 +131,29 @@ location of your Java installation." fi else JAVACMD=java - which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. Please set the JAVA_HOME variable in your environment to match the location of your Java installation." + fi fi # Increase the maximum file descriptors if we can. if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then case $MAX_FD in #( max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 MAX_FD=$( ulimit -H -n ) || warn "Could not query maximum file descriptor limit" esac case $MAX_FD in #( '' | soft) :;; #( *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 ulimit -n "$MAX_FD" || warn "Could not set maximum file descriptor limit to $MAX_FD" esac @@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then done fi -# Collect all arguments for the java command; -# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of -# shell script including quotes and variable substitutions, so put them in -# double quotes to make sure that they get re-expanded; and -# * put everything else in single quotes, so that it's not re-expanded. + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. set -- \ "-Dorg.gradle.appname=$APP_BASE_NAME" \ diff --git a/gradlew.bat b/gradlew.bat index 53a6b23..7101f8e 100644 --- a/gradlew.bat +++ b/gradlew.bat @@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME% @@ -42,11 +43,11 @@ set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute -echo. -echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail @@ -56,11 +57,11 @@ set JAVA_EXE=%JAVA_HOME%/bin/java.exe if exist "%JAVA_EXE%" goto execute -echo. -echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% -echo. -echo Please set the JAVA_HOME variable in your environment to match the -echo location of your Java installation. +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 goto fail diff --git a/settings.gradle b/settings.gradle index 25c32b0..e1079b1 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,14 +1,10 @@ -pluginManagement { - repositories { - gradlePluginPortal() - maven { - name = 'MinecraftForge' - url = 'https://maven.minecraftforge.net/' - } - maven { url = 'https://maven.parchmentmc.org' } // Add this line - } -} - -plugins { - id 'org.gradle.toolchains.foojay-resolver-convention' version '0.7.0' -} +pluginManagement { + repositories { + maven { url "https://maven.fabricmc.net/" } + maven { url "https://maven.architectury.dev/" } + maven { url "https://files.minecraftforge.net/maven/" } + gradlePluginPortal() + } +} + +rootProject.name = 'ariasessentials' diff --git a/src/main/java/com/zontreck/AriasEssentials.java b/src/main/java/com/zontreck/AriasEssentials.java new file mode 100644 index 0000000..b0b1cf3 --- /dev/null +++ b/src/main/java/com/zontreck/AriasEssentials.java @@ -0,0 +1,71 @@ +package com.zontreck; + +import com.zontreck.block.DeprecatedModBlocks; +import com.zontreck.block.ModBlocks; +import com.zontreck.client.TimeBoostEntityRenderer; +import com.zontreck.commands.CommandRegistry; +import com.zontreck.configs.client.AEClientConfig; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.effects.ModEffects; +import com.zontreck.effects.ModPotions; +import com.zontreck.enchantments.ModEnchantments; +import com.zontreck.entities.ModEntities; +import com.zontreck.items.DeprecatedModItems; +import com.zontreck.items.ModItems; +import com.zontreck.libzontreck.config.ServerConfig; +import net.minecraft.client.renderer.entity.EntityRenderers; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.ModLoadingContext; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; +import org.slf4j.ILoggerFactory; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; + +import java.time.Instant; +import java.util.Random; +import java.util.logging.LogManager; + +@Mod(AriasEssentials.MOD_ID) +public final class AriasEssentials { + public static Logger LOGGER = LoggerFactory.getLogger("ariaessentials"); + public static final String MOD_ID = "ariasessentials"; + public static final Random random = new Random(Instant.now().getEpochSecond()); + + public AriasEssentials() { + // This code runs as soon as Minecraft is in a mod-load-ready state. + // However, some things (like registries and resources) may still be uninitialized. + // Proceed with mild caution. + + IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus(); + LOGGER.info("/!\\ Loading Aria's Essentials Configuration Files /!\\"); + AEServerConfig.loadFromFile(); + AEClientConfig.loadFromFile(); + ServerConfig.init(); + LOGGER.info("/!\\ DONE LOADING AECONFIG /!\\"); + + ModItems.ITEMS.register(bus); + ModEntities.register(bus); + ModEffects.register(bus); + ModPotions.register(bus); + DeprecatedModItems.register(bus); + ModEnchantments.register(bus); + DeprecatedModBlocks.register(bus); + ModBlocks.register(bus); + + + + } + + @Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.MOD, value = Dist.CLIENT) + public static class ClientModEvents { + @SubscribeEvent + public static void onClientSetup(FMLClientSetupEvent ev) { + EntityRenderers.register(ModEntities.TIAB_ENTITY.get(), TimeBoostEntityRenderer::new); + } + } +} diff --git a/src/main/java/dev/zontreck/essentials/Messages.java b/src/main/java/com/zontreck/Messages.java similarity index 83% rename from src/main/java/dev/zontreck/essentials/Messages.java rename to src/main/java/com/zontreck/Messages.java index 4ef905b..f4b8bc5 100644 --- a/src/main/java/dev/zontreck/essentials/Messages.java +++ b/src/main/java/com/zontreck/Messages.java @@ -1,6 +1,5 @@ -package dev.zontreck.essentials; +package com.zontreck; -import dev.zontreck.libzontreck.chat.ChatColor; import net.minecraft.sounds.SoundEvent; import net.minecraft.sounds.SoundEvents; @@ -80,6 +79,21 @@ public class Messages { public static final String TP_EFFECTS_TOGGLED; + + public static final String PREFIX_UPDATED; + public static final String PREFIX_COLOR_UPDATED; + public static final String NICK_UPDATED; + public static final String NAME_COLOR_UPDATED; + public static final String CHAT_COLOR_UPDATED; + public static final String CONSOLE_ERROR; + public static final String STARTER_FAILURE_PERMISSIONS; + public static final String STARTER_KIT_GIVEN; + + public static final String FLIGHT_GIVEN; + public static final String FLIGHT_REMOVED; + public static final String BUILDER_DIMENSION_DISALLOWED; + + static{ ESSENTIALS_PREFIX = "!Gray![!Dark_Green!AE!Gray!] "; @@ -172,5 +186,19 @@ public class Messages { COOLDOWN_IN_PROGRESS = ESSENTIALS_PREFIX + "!Dark_Red!The command [0] is still on cooldown for another [1]"; TP_EFFECTS_TOGGLED = ESSENTIALS_PREFIX + "!Dark_Purple!The teleport effects preferences have been toggled to: [0]"; + + + + PREFIX_UPDATED = ESSENTIALS_PREFIX + " !Dark_Purple!Your prefix has been updated"; + PREFIX_COLOR_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple!Your prefix color has been updated"; + NICK_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple! Your nickname has been updated"; + NAME_COLOR_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple!Your name color has been updated"; + CHAT_COLOR_UPDATED = ESSENTIALS_PREFIX + "!Dark_Purple!Your chat color has been updated"; + CONSOLE_ERROR = ESSENTIALS_PREFIX + "!Dark_Red!This command can only be executed from within the game, and by a player"; + STARTER_FAILURE_PERMISSIONS = ESSENTIALS_PREFIX + "!Dark_Red!This command can only be executed by server operators"; + STARTER_KIT_GIVEN = ESSENTIALS_PREFIX + "!Dark_Purple!You have been given a starter kit. Welcome to the server."; + FLIGHT_GIVEN = ESSENTIALS_PREFIX + "!Dark_Green!You start to feel lighter than a feather"; + FLIGHT_REMOVED = ESSENTIALS_PREFIX + "!Dark_Red!You have a sinking feeling you are no longer lighter than a feather."; + BUILDER_DIMENSION_DISALLOWED = ESSENTIALS_PREFIX+"!Dark_Red!The builder dimension is disallowed for regular users. You must be a server operator."; } } diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPMethod.java b/src/main/java/com/zontreck/ariaslib/http/HTTPMethod.java new file mode 100644 index 0000000..162477a --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPMethod.java @@ -0,0 +1,9 @@ +package dev.zontreck.ariaslib.http; + +public enum HTTPMethod +{ + GET, + POST, + PUT, + DELETE +} diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPRequest.java b/src/main/java/com/zontreck/ariaslib/http/HTTPRequest.java new file mode 100644 index 0000000..158d92a --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPRequest.java @@ -0,0 +1,15 @@ +package dev.zontreck.ariaslib.http; + +public class HTTPRequest +{ + + public String url; + + public String method; + public String body; + public String contentType; + + protected HTTPRequest(){ + + } +} diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java b/src/main/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java new file mode 100644 index 0000000..4e062d5 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPRequestBuilder.java @@ -0,0 +1,134 @@ +package dev.zontreck.ariaslib.http; + + +import java.io.*; +import java.net.HttpURLConnection; +import java.net.MalformedURLException; +import java.net.URL; + +public class HTTPRequestBuilder +{ + + private HttpURLConnection connection; + private URL url; + private HTTPRequest request = new HTTPRequest(); + + public static HTTPRequestBuilder builder() + { + return new HTTPRequestBuilder(); + } + + protected HTTPRequestBuilder() + { + + } + + /** + * Sets the url in this request to the one supplied + * @param url The url to connect to + * @return Builder instance + * @throws MalformedURLException If the URL supplied was invalid + */ + public HTTPRequestBuilder withURL( String url) throws MalformedURLException { + request.url = url; + this.url = new URL(url); + + return this; + } + + /** + * Sets the HTTP Request method + * @param method The method you want to use + * @see HTTPMethod + * @return Builder instance + */ + public HTTPRequestBuilder withMethod(HTTPMethod method) + { + switch(method) + { + case GET: + { + request.method = "GET"; + break; + } + case POST: { + request.method = "POST"; + if(request.contentType.isEmpty()) request.contentType = "application/x-www-form-urlencoded"; + break; + } + case DELETE:{ + request.method = "DELETE"; + break; + } + case PUT:{ + request.method = "PUT"; + if(request.contentType.isEmpty()) request.contentType = "application/x-www-form-urlencoded"; + break; + } + } + + return this; + } + + /** + * Sets the request body. This may only be processed by the server when using POST or PUT, depending on the server's setup + * @param body The body to upload + * @return Builder Instance + */ + public HTTPRequestBuilder withBody(String body) + { + request.body = body; + return this; + } + + /** + * Sets the content type header + * Default: application/x-www-form-urlencoded for POST/PUT, and null/not present for GET + * @param type + * @return + */ + public HTTPRequestBuilder withContentType(String type) + { + request.contentType = type; + return this; + } + + public HTTPResponse build() + { + try { + connection = (HttpURLConnection) url.openConnection(); + connection.setRequestMethod(request.method); + byte[] array = request.body.getBytes("UTF-8"); + connection.setRequestProperty("Content-Length" , "" + array.length); + connection.setRequestProperty("Content-Type", request.contentType); + connection.setDoInput(true); + connection.setUseCaches(false); + connection.setDoOutput(true); + DataOutputStream dos = new DataOutputStream(connection.getOutputStream()); + dos.write(array); + dos.flush(); + dos.close(); + + + // Get the response body + InputStream inputStream = connection.getInputStream(); + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + StringBuilder response = new StringBuilder(); + String line; + + while ((line = reader.readLine()) != null) { + response.append(line); + } + reader.close(); + inputStream.close(); + + String responseBody = response.toString(); + + return new HTTPResponse(connection.getContentType(), connection.getResponseCode(), responseBody, request); + } catch (IOException e) { + throw new RuntimeException(e); + }finally { + connection.disconnect(); + } + } +} diff --git a/src/main/java/com/zontreck/ariaslib/http/HTTPResponse.java b/src/main/java/com/zontreck/ariaslib/http/HTTPResponse.java new file mode 100644 index 0000000..bd9bdfb --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/http/HTTPResponse.java @@ -0,0 +1,33 @@ +package dev.zontreck.ariaslib.http; + +public class HTTPResponse +{ + private String ContentType; + private int ResponseCode; + private String ResponseBody; + private HTTPRequest OriginalRequest; + + protected HTTPResponse(String contentType, int code, String body, HTTPRequest request){ + this.ContentType = contentType; + this.ResponseCode = code; + this.ResponseBody = body; + this.OriginalRequest = request; + + } + + public String getContentType() { + return ContentType; + } + + public int getResponseCode() { + return ResponseCode; + } + + public String getResponseBody() { + return ResponseBody; + } + + public HTTPRequest getOriginalRequest() { + return OriginalRequest; + } +} diff --git a/src/main/java/com/zontreck/ariaslib/terminal/Banners.java b/src/main/java/com/zontreck/ariaslib/terminal/Banners.java new file mode 100644 index 0000000..5545acd --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/terminal/Banners.java @@ -0,0 +1,47 @@ +package com.zontreck.ariaslib.terminal; + +import java.util.ArrayList; +import java.util.List; + +public class Banners +{ + + public static String generateBanner(String text) { + int maxLength = calculateMaxLength(text); + List bannerLines = new ArrayList<>(); + StringBuilder border = new StringBuilder(); + for (int i = 0; i < maxLength + 4; i++) { + border.append("*"); + } + bannerLines.add(border.toString()); + bannerLines.add("* " + centerText(text, maxLength) + " *"); + bannerLines.add(border.toString()); + return String.join("\n", bannerLines); + } + + private static String centerText(String text, int maxLength) { + StringBuilder centeredText = new StringBuilder(); + int spacesToAdd = (maxLength - text.length()) / 2; + for (int i = 0; i < spacesToAdd; i++) { + centeredText.append(" "); + } + centeredText.append(text); + for (int i = 0; i < spacesToAdd; i++) { + centeredText.append(" "); + } + if (centeredText.length() < maxLength) { + centeredText.append(" "); + } + return centeredText.toString(); + } + + private static int calculateMaxLength(String text) { + int maxLength = 0; + for (String line : text.split("\n")) { + if (line.length() > maxLength) { + maxLength = line.length(); + } + } + return maxLength; + } +} diff --git a/src/main/java/com/zontreck/ariaslib/terminal/Task.java b/src/main/java/com/zontreck/ariaslib/terminal/Task.java new file mode 100644 index 0000000..fb57e09 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/terminal/Task.java @@ -0,0 +1,86 @@ +package com.zontreck.ariaslib.terminal; + +import com.zontreck.ariaslib.util.Progress; + +import java.util.TimerTask; + +public abstract class Task extends TimerTask implements Runnable { + public final String TASK_NAME; + private TaskCompletionToken token = new TaskCompletionToken ( ); + + public static final String CHECK = "P"; + public static final String FAIL = "F"; + // Else use the progress spinner from the Progress class + private boolean isSilent = false; + + public Task ( String name ) { + TASK_NAME = name; + } + + /** + * This constructor is meant to be used to create silent tasks that do not output to the console. (Example usage: DelayedExecutionService) + * + * @param name Task name + * @param silent Whether to print to the terminal + */ + public Task ( String name , boolean silent ) { + this ( name ); + isSilent = silent; + } + + + public boolean isComplete ( ) { + return token.get ( ); + } + + public void startTask ( ) { + Thread tx = new Thread(this); + tx.start(); + + if(! isSilent) + { + Thread tx2 = new Thread(new SpinnerTask(token, this)); + tx2.start(); + } + } + + public void stopTask ( ) { + if ( token.get ( ) && ! isSilent ) { + System.out.printf ( "\r" + TASK_NAME + "\t\t[" + token.status + "]\n" ); + } + } + + public void setSuccess ( ) { + token.completed ( CHECK ); + } + + public void setFail ( ) { + token.completed ( FAIL ); + } + + public class SpinnerTask extends Task { + public final Task task; + public final TaskCompletionToken token; + private final Progress spinner = new Progress ( 100 ); + + public SpinnerTask ( TaskCompletionToken token , Task parent ) { + super ( "spinner" , true ); + this.token = token; + this.task = parent; + } + + @Override + public void run ( ) { + while ( ! task.isComplete ( ) ) { + try { + Thread.sleep ( 50L ); + + if ( ! task.isSilent && ! task.isComplete ( ) ) + System.out.printf ( "\r" + task.TASK_NAME + "\t\t" + spinner.getSpinnerTick ( ) + "\r" ); + } catch ( Exception e ) { + e.printStackTrace ( ); + } + } + } + } +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java b/src/main/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java new file mode 100644 index 0000000..6094019 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/terminal/TaskCompletionToken.java @@ -0,0 +1,20 @@ +package com.zontreck.ariaslib.terminal; + +import java.util.concurrent.atomic.AtomicBoolean; + +/** + * Should not be re-used for multiple tasks!!! + */ +public class TaskCompletionToken +{ + private AtomicBoolean complete = new AtomicBoolean(false); + public String status = ""; + public void completed(String reason){ + status=reason; + complete.set(true); + } + + public boolean get(){ + return complete.get(); + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/FileIO.java b/src/main/java/com/zontreck/ariaslib/util/FileIO.java new file mode 100644 index 0000000..f517adf --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/FileIO.java @@ -0,0 +1,51 @@ +package com.zontreck.ariaslib.util; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; + +public class FileIO +{ + + public static String readFile(String filePath) { + try { + byte[] fileBytes = Files.readAllBytes(Paths.get(filePath)); + return new String(fileBytes); + } catch (IOException e) { + return "An error occurred: " + e.getMessage(); + } + } + public static void writeFile(String filePath, String newContent) { + try { + Files.write(Paths.get(filePath), newContent.getBytes()); + } catch (IOException e) { + } + } + + + /** + * Recursively delete a directory + * @param directory The folder to delete + */ + public static void deleteDirectory(File directory) { + if (directory.exists()) { + File[] files = directory.listFiles(); + if (files != null) { + for (File file : files) { + if (file.isDirectory()) { + deleteDirectory(file); + } else { + file.delete(); + } + } + } + // Now directory is empty, so delete it + directory.delete(); + System.out.println("Directory deleted: " + directory.getAbsolutePath()); + } else { + System.out.println("Directory does not exist: " + directory.getAbsolutePath()); + } + } +} + diff --git a/src/main/java/com/zontreck/ariaslib/util/Hashing.java b/src/main/java/com/zontreck/ariaslib/util/Hashing.java new file mode 100644 index 0000000..08c77c2 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Hashing.java @@ -0,0 +1,120 @@ +package com.zontreck.ariaslib.util; + +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; + +public class Hashing +{ + + + /** + * A md5 hashing function that is compatible with literally every other hashing function out there + * @param input The string to hash + * @return The hash + */ + public static String md5(String input) { + try { + MessageDigest md = MessageDigest.getInstance("MD5"); + md.update(input.getBytes()); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + /** + * A md5 hashing function that is compatible with literally every other hashing function out there + * @param input The bytes to hash + * @return The hash + */ + public static String md5(byte[] input) { + try { + MessageDigest md = MessageDigest.getInstance("MD5"); + md.update(input); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + + + /** + * A sha256 hashing function that is compatible with literally every other hashing function out there + * @param input The string to hash + * @return The hash + */ + public static String sha256(String input) { + try { + MessageDigest md = MessageDigest.getInstance("SHA256"); + md.update(input.getBytes()); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } + /** + * A sha256 hashing function that is compatible with literally every other hashing function out there + * @param input The bytes to hash + * @return The hash + */ + public static String sha256(byte[] input) { + try { + MessageDigest md = MessageDigest.getInstance("SHA256"); + md.update(input); + + byte[] byteData = md.digest(); + + // Convert the byte array to a hexadecimal string + StringBuilder hexString = new StringBuilder(); + for (byte aByteData : byteData) { + String hex = Integer.toHexString(0xff & aByteData); + if (hex.length() == 1) { + hexString.append('0'); + } + hexString.append(hex); + } + return hexString.toString(); + } catch (NoSuchAlgorithmException e) { + e.printStackTrace(); + return null; + } + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Lists.java b/src/main/java/com/zontreck/ariaslib/util/Lists.java new file mode 100644 index 0000000..f0fe39b --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Lists.java @@ -0,0 +1,94 @@ +package com.zontreck.ariaslib.util; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +public class Lists +{ + /** + * Programatically constructs a list + * @param values The list of values + * @return The new list + * @param An arbitrary type parameter + */ + public static List of(T... values) + { + List arr = new ArrayList<>(); + for(T value : values) + { + arr.add(value); + } + + return arr; + } + + + /** + * Splits a string into a list + * @param input The string to split + * @param delimiters The list of delimiters + * @return A non-strided list + */ + public static List split(String input, String... delimiters) { + List result = new ArrayList<>(); + StringBuilder regex = new StringBuilder("("); + + // Constructing the regular expression pattern with provided delimiters + for (String delimiter : delimiters) { + regex.append(delimiter).append("|"); + } + regex.deleteCharAt(regex.length() - 1); // Remove the extra '|' character + regex.append(")"); + + String[] tokens = input.split(regex.toString()); + + // Add non-empty tokens to the result list + for (String token : tokens) { + if (!token.isEmpty()) { + result.add(token); + } + } + + return result; + } + + /** + * Split a string, and keep the delimiters + * @param input The string to be parsed and split + * @param delimiters A list of delimiters + * @return A strided list containing the parsed options, and the delimiters + */ + public static List splitWithDelim(String input, String... delimiters) { + List result = new ArrayList<>(); + StringBuilder regex = new StringBuilder("("); + + // Constructing the regular expression pattern with provided delimiters + for (String delimiter : delimiters) { + regex.append(delimiter).append("|"); + } + regex.deleteCharAt(regex.length() - 1); // Remove the extra '|' character + regex.append(")"); + + // Splitting the input string using the regex pattern + String[] tokens = input.split(regex.toString()); + + // Adding tokens and delimiters to the result list in a strided manner + for (int i = 0; i < tokens.length; i++) { + if (!tokens[i].isEmpty()) { + result.add(tokens[i]); + } + // Adding delimiter if it exists and it's not the last token + if (i < tokens.length - 1) { + result.add(input.substring(input.indexOf(tokens[i]) + tokens[i].length(), input.indexOf(tokens[i + 1]))); + } + } + + return result; + } + + + private Lists(){ + + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Maps.java b/src/main/java/com/zontreck/ariaslib/util/Maps.java new file mode 100644 index 0000000..d8de013 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Maps.java @@ -0,0 +1,49 @@ +package com.zontreck.ariaslib.util; + +import java.util.HashMap; +import java.util.Map; + +/** + * Utility class to assist in creating a dictionary programmatically in one line of code. + */ +public class Maps +{ + /** + * This takes a list of entries and returns a HashMap + * @param entries The entries you want in your hashmap + * @return The map itself + * @param Any typed parameter + * @param Any typed parameter + */ + public static Map of(Entry... entries) { + Map map = new HashMap<>(); + for(Entry E : entries) + { + map.put(E.key, E.value); + } + + return map; + } + + /** + * A virtual entry used only by the Maps#of function. + * @see Maps#of(Entry[]) + * @param Any typed parameter + * @param Any typed parameter + */ + public static class Entry { + public final A key; + public final B value; + + /** + * Initializes the readonly entry + * @param a The dictionary key + * @param b The value + */ + public Entry(A a, B b) + { + this.key=a; + this.value=b; + } + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/MathUtil.java b/src/main/java/com/zontreck/ariaslib/util/MathUtil.java new file mode 100644 index 0000000..4dc7924 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/MathUtil.java @@ -0,0 +1,18 @@ +package com.zontreck.ariaslib.util; + +/** + * This class will be used to house math helper functions + */ +public class MathUtil +{ + /** + * A newer helper function to get the percentage with large number support + * @param current Min value + * @param max Maximum value for progress + * @return Percentage + */ + public static int getPercent(long current, long max) + { + return Math.round(current*100/max); + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Percent.java b/src/main/java/com/zontreck/ariaslib/util/Percent.java new file mode 100644 index 0000000..a8e75d7 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Percent.java @@ -0,0 +1,23 @@ +package com.zontreck.ariaslib.util; + +import java.io.PrintStream; + +public class Percent +{ + int current; + int maximum; + + public Percent(int cur, int max) + { + current=cur; + maximum=max; + } + + + public int get() + { + return ((current * 100) / maximum); + } + + +} diff --git a/src/main/java/com/zontreck/ariaslib/util/Progress.java b/src/main/java/com/zontreck/ariaslib/util/Progress.java new file mode 100644 index 0000000..af51310 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/Progress.java @@ -0,0 +1,56 @@ +package com.zontreck.ariaslib.util; + +import java.util.concurrent.atomic.AtomicInteger; + +public class Progress +{ + private int maximum; + private int current; + private AtomicInteger tickNum = new AtomicInteger(0); + private static final String TICKS="-\\|/"; + + public String getSpinnerTick() + { + if(tickNum.get()>=TICKS.length()) tickNum.set(0); + + return "[" + TICKS.substring(tickNum.getAndIncrement(), tickNum.get()) + "]"; + } + + public Progress(int maximum) + { + current=0; + this.maximum=maximum; + } + + public int getPercent(){ + return (current*100/maximum); + } + + public String getPercentStr() + { + return (getPercent()+"%"); + } + + public static int getPercentOf(int current, int max) + { + return (current*100/max); + } + + public void increment(){ + current++; + sanity(); + } + private void sanity(){ + if(current > maximum) current = maximum; + if(current < 0)current = 0; + } + public void decrement(){ + current--; + sanity(); + } + + public void setCurrent(int cur) + { + current=cur; + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/ProgressBar.java b/src/main/java/com/zontreck/ariaslib/util/ProgressBar.java new file mode 100644 index 0000000..5fbcb84 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/ProgressBar.java @@ -0,0 +1,66 @@ +package com.zontreck.ariaslib.util; + +import java.io.PrintStream; + +/** + * Utility to create an ascii progress bar + */ +public class ProgressBar +{ + + private static final int DEFAULT_BAR_WIDTH = 50; + + /** + * Reserved spaces for the brackets, and the carrot, and the percent value. + */ + private static final int PROGRESS_BAR_RESERVED=5; + + /** + * Always will return 80 + * @return 80 + */ + private static int getConsoleWidth() { + return 80; // Default console width, can be adjusted for different consoles + } + + /** + * Build a progress bar + *

+ * your text here [========= ] 40% your text here + * @param percent The percentage + * @param beforeText + * @param afterText + * @return ProgressBar as a String + */ + public static String printProgressBar(int percent, String beforeText, String afterText) { + StringBuilder sb = new StringBuilder(); + int consoleWidth = getConsoleWidth(); + int barWidth = Math.min(consoleWidth - beforeText.length() - afterText.length() - PROGRESS_BAR_RESERVED, DEFAULT_BAR_WIDTH); + + // Calculate progress + int progressBarLength = (int) ((double) percent / 100 * barWidth); + + // Print before text + sb.append(beforeText); + + // Print progress bar + sb.append("["); + for (int i = 0; i < barWidth; i++) { + if (i < progressBarLength) { + sb.append("="); + }else if(i==progressBarLength) sb.append(">"); + else { + sb.append(" "); + } + } + sb.append("]"); + + // Print percentage + sb.append(" " + percent + "%"); + + // Print after text + sb.append(afterText); + + return sb.toString(); + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/TimeNotation.java b/src/main/java/com/zontreck/ariaslib/util/TimeNotation.java new file mode 100644 index 0000000..6ea72eb --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/TimeNotation.java @@ -0,0 +1,161 @@ +package com.zontreck.ariaslib.util; + +import java.util.List; + +/** + * Contains useful structures and functions for dealing with, and manipulation of, time. + */ +public class TimeNotation +{ + public int Years; + public int Months; + public int Weeks; + public int Days; + public int Hours; + public int Minutes; + public int Seconds; + + public TimeNotation(int years, int months, int weeks, int days, int hours, int minutes, int seconds) + { + Years=years; + Months=months; + Weeks=weeks; + Days=days; + Hours=hours; + Minutes=minutes; + Seconds = seconds; + } + + private TimeNotation(){} + + + @Override + public String toString() { + String str = + someOrNone(Years,Pluralize(Years, "year") + ", ") + + someOrNone(Months, Pluralize(Months, "month") + ", ") + + someOrNone(Weeks, Pluralize(Weeks, "week") + ", ") + + someOrNone(Days, Pluralize(Days, "day") + ", ") + + someOrNone(Hours, Pluralize(Hours, "hour") + ", ") + + someOrNone(Minutes, Pluralize(Minutes, "minute") + ", ") + + someOrNone(Seconds, Pluralize(Seconds, "second")); + + if(str == ""){ + return "No Seconds"; + } else return str; + } + + /** + * Create a plural version for a number + * @param num The number to prefix + * @param str The singular form of the string + * @return Combined string, num + str in plural form if necessary + */ + private String Pluralize(int num, String str) + { + return num + " " + ((num > 1) ? str+"s" : str); + } + + /** + * A simple function to test a number, return a string, or return nothing at all. + * @param num The number to check + * @param str The string to return if the number is greater than zero + * @return Str if num >1, or empty string + */ + private String someOrNone(int num, String str) + { + if(num > 0) return str; + else return ""; + } + /** + * A simple function to test a number, return a string, or return something else. + * @param num The number to check + * @param str The string to return if the number is greater than zero + * @return Str if num >1, or other string + */ + private String someOrOther(int num, String str, String other) + { + if(num > 0) return str; + else return other; + } + + /** + * Encodes time notation! + * @return A program readable string that can be decoded back to a time notation + */ + public String toNotation() + { + return Years + "Y" + Months + "M" + Weeks + "W" + Days + "d" + Hours + "h" + Minutes + "m" + Seconds + "s"; + } + + /** + * Parses a time notation string + * @param notation Serialized time notation + * @return The deserialized time notation object + */ + public static TimeNotation fromNotation(String notation) + { + TimeNotation notationX = new TimeNotation(); + String[] delims = new String[]{"Y", "M", "W", "d", "h", "m", "s"}; + List opts = Lists.split(notation, delims); + + + int index = 0; + for(String dlim : delims) + { + if(notation.contains(dlim)) + { + switch (dlim) + { + case "Y": + { + notationX.Years = Integer.parseInt(opts.get(index)); + + break; + } + case "M": + { + notationX.Months = Integer.parseInt(opts.get(index)); + + break; + } + case "W": + { + notationX.Weeks = Integer.parseInt(opts.get(index)); + + break; + } + case "d": + { + notationX.Days = Integer.parseInt(opts.get(index)); + + break; + } + case "h": + { + notationX.Hours = Integer.parseInt(opts.get(index)); + + break; + } + case "m": + { + notationX.Minutes = Integer.parseInt(opts.get(index)); + + break; + } + case "s": + { + notationX.Seconds = Integer.parseInt(opts.get(index)); + + break; + } + } + + index++; + } + } + + return notationX; + + } +} diff --git a/src/main/java/com/zontreck/ariaslib/util/TimeUtil.java b/src/main/java/com/zontreck/ariaslib/util/TimeUtil.java new file mode 100644 index 0000000..587cb16 --- /dev/null +++ b/src/main/java/com/zontreck/ariaslib/util/TimeUtil.java @@ -0,0 +1,96 @@ +package com.zontreck.ariaslib.util; + +/** + * This class is a helper with some minecraft specific functions + */ +public class TimeUtil +{ + /** + * Converts seconds to ticks. (seconds*ticks) + * @param seconds Number of seconds + * @param ticks Number of ticks in a single second + * @return Number of ticks + */ + public static int secondsToTicks(int seconds, int ticks) + { + return seconds*ticks; + } + + /** + * Converts the number of ticks to seconds + * @param ticks The number of ticks to convert + * @param ticksInASecond The number of ticks in a single second + * @return Number of seconds + */ + public static int ticksToSeconds(int ticks, int ticksInASecond) + { + return ticks / ticksInASecond; + } + + /** + * Encodes a LibAC Time Notation + * @param seconds Number of seconds to convert + * @return Time Notation + */ + public static TimeNotation secondsToTimeNotation(int seconds) + { + int years = seconds / YEAR; + if(years > 0) seconds -= YEAR * years; + + int month = seconds / MONTH; + if(month > 0) seconds -= MONTH * month; + + int week = seconds / WEEK; + if(week > 0) seconds -= WEEK * week; + + int day = seconds / DAY; + if(day > 0) seconds -= DAY * day; + + int hour = seconds / HOUR; + if(hour > 0) seconds -= HOUR * hour; + + int minute = seconds / MINUTE; + if(minute > 0) seconds -= MINUTE * minute; + + return new TimeNotation(years, month, week, day, hour, minute, seconds); + } + + /** + * Convert a time notation to seconds + * @param notation Notation to convert + * @return Total seconds + */ + public static int notationToSeconds(TimeNotation notation) + { + int seconds = 0; + + seconds += (notation.Years * YEAR); + seconds += (notation.Months * MONTH); + seconds += (notation.Weeks * WEEK); + seconds += (notation.Days * DAY); + seconds += (notation.Hours * HOUR); + seconds += (notation.Minutes * MINUTE); + seconds += (notation.Seconds); + + return seconds; + } + + + public static final int SECOND; + public static final int MINUTE; + public static final int HOUR; + public static final int DAY; + public static final int WEEK; + public static final int MONTH; + public static final int YEAR; + + static { + SECOND = 1; + MINUTE = SECOND * 60; + HOUR = MINUTE * 60; + DAY = HOUR*24; + WEEK = DAY*7; + MONTH = WEEK*4; + YEAR = DAY*365; + } +} diff --git a/src/main/java/com/zontreck/block/DeprecatedBlock.java b/src/main/java/com/zontreck/block/DeprecatedBlock.java new file mode 100644 index 0000000..4636747 --- /dev/null +++ b/src/main/java/com/zontreck/block/DeprecatedBlock.java @@ -0,0 +1,15 @@ +package com.zontreck.block; + + +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.block.state.BlockBehaviour; + +@Deprecated +public class DeprecatedBlock extends Block +{ + public DeprecatedBlock(){ + super(BlockBehaviour.Properties.copy(Blocks.STONE).instabreak()); + } +} + diff --git a/src/main/java/com/zontreck/block/DeprecatedBlockItem.java b/src/main/java/com/zontreck/block/DeprecatedBlockItem.java new file mode 100644 index 0000000..6dc41b0 --- /dev/null +++ b/src/main/java/com/zontreck/block/DeprecatedBlockItem.java @@ -0,0 +1,45 @@ +package com.zontreck.block; + + +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.network.chat.Component; +import net.minecraft.world.item.BlockItem; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; + +import java.util.List; + +@Deprecated +public class DeprecatedBlockItem extends BlockItem +{ + public DeprecatedBlockItem(Block a) + { + super(a, new Item.Properties().fireResistant()); + } + + @Override + public boolean isFoil(ItemStack p_41453_) { + return true; + } + + /** + * This is to give a use to an otherwise useless item. The piglins will exchange the item and it gets removed in that way. + * @param stack + * @return + */ + @Override + public boolean isPiglinCurrency(ItemStack stack) { + return true; + } + + @Override + public void appendHoverText(ItemStack p_41421_, Level p_41422_, List p_41423_, TooltipFlag p_41424_) { + p_41423_.add(ChatHelpers.macro("!Dark_Red!This block is deprecated")); + p_41423_.add(ChatHelpers.macro("!Dark_Green!It would appear this block smells faintly of gold. Maybe piglins will accept it?")); + p_41423_.add(ChatHelpers.macro("!Dark_Red!This block is scheduled for removal in a future version. You should use it before it is too late.")); + } +} + diff --git a/src/main/java/com/zontreck/block/DeprecatedModBlocks.java b/src/main/java/com/zontreck/block/DeprecatedModBlocks.java new file mode 100644 index 0000000..4465b3a --- /dev/null +++ b/src/main/java/com/zontreck/block/DeprecatedModBlocks.java @@ -0,0 +1,87 @@ +package com.zontreck.block; + + +import com.zontreck.AriasEssentials; +import com.zontreck.items.CreativeModeTabs; +import net.minecraft.core.BlockPos; +import net.minecraft.world.item.Item; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.material.Material; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +@Deprecated +public class DeprecatedModBlocks +{ + + public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, AriasEssentials.MOD_ID); + public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MOD_ID); + + + public static void register(IEventBus bus){ + BLOCKS.register(bus); + ITEMS.register(bus); + AriasEssentials.LOGGER.info("Registering all deprecated blocks..."); + } + + private static boolean never(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { + return false; + } + private static boolean always(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { + return true; + } + + private static BlockBehaviour.Properties standardBehavior() + { + return BlockBehaviour.Properties.of(Material.STONE).requiresCorrectToolForDrops().strength(7F).destroyTime(6); + } + private static BlockBehaviour.Properties stoneLikeBehavior() + { + return BlockBehaviour.Properties.copy(Blocks.COBBLESTONE); + } + + private static BlockBehaviour.Properties explosionResistance() + { + return standardBehavior().explosionResistance(1200); + } + + private static BlockBehaviour.Properties noViewBlocking() + { + return standardBehavior().noOcclusion().isViewBlocking(DeprecatedModBlocks::never); + } + + private static BlockBehaviour.Properties fullBright() + { + return standardBehavior().lightLevel((X)->{ + return 15; + }).noOcclusion(); + } + + private static BlockBehaviour.Properties standard = standardBehavior(); + + private static BlockBehaviour.Properties explosionResistance = explosionResistance(); + + private static BlockBehaviour.Properties noViewBlocking = noViewBlocking(); + + private static BlockBehaviour.Properties stone = stoneLikeBehavior(); + + private static BlockBehaviour.Properties poolLightClean = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 15); + private static BlockBehaviour.Properties poolLightDirty = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 12); + private static BlockBehaviour.Properties poolLightFilthy = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 4); + + public static RegistryObject registerDeprecated(RegistryObject blk) + { + CreativeModeTabs.addToAETab(ITEMS.register(blk.getId().getPath(), ()->new DeprecatedBlockItem(blk.get()))); + + return blk; + } + + + +} diff --git a/src/main/java/com/zontreck/block/FoiledBlockItem.java b/src/main/java/com/zontreck/block/FoiledBlockItem.java new file mode 100644 index 0000000..7f387a1 --- /dev/null +++ b/src/main/java/com/zontreck/block/FoiledBlockItem.java @@ -0,0 +1,19 @@ +package com.zontreck.block; + +import net.minecraft.world.item.BlockItem; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.block.Block; + +public class FoiledBlockItem extends BlockItem { + + public FoiledBlockItem(Block pBlock, Properties pProperties) { + super(pBlock, pProperties); + // TODO Auto-generated constructor stub + } + + @Override + public boolean isFoil(ItemStack pStack) { + return true; + } + +} diff --git a/src/main/java/com/zontreck/block/ModBlocks.java b/src/main/java/com/zontreck/block/ModBlocks.java new file mode 100644 index 0000000..977486b --- /dev/null +++ b/src/main/java/com/zontreck/block/ModBlocks.java @@ -0,0 +1,382 @@ +package com.zontreck.block; + + +import com.zontreck.AriasEssentials; +import com.zontreck.items.CreativeModeTabs; +import net.minecraft.core.BlockPos; +import net.minecraft.world.entity.EntityType; +import net.minecraft.world.item.BlockItem; +import net.minecraft.world.item.Item; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.*; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity; +import net.minecraft.world.level.block.state.BlockBehaviour; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.material.Material; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class ModBlocks { + + private static BlockBehaviour.StatePredicate shulkerState = (p_152653_, p_152654_, p_152655_) -> { + BlockEntity blockentity = p_152654_.getBlockEntity(p_152655_); + if (!(blockentity instanceof ShulkerBoxBlockEntity)) { + return true; + } else { + ShulkerBoxBlockEntity shulkerboxblockentity = (ShulkerBoxBlockEntity)blockentity; + return shulkerboxblockentity.isClosed(); + } + }; + + + public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, AriasEssentials.MOD_ID); + public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MOD_ID); + + private static boolean never(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { + return false; + } + private static boolean always(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { + return true; + } + + + private static boolean neverSpawn(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, EntityType entityType) { + return false; + } + + public static void register(IEventBus bus){ + BLOCKS.register(bus); + ITEMS.register(bus); + AriasEssentials.LOGGER.info("Registering all blocks..."); + } + + private static BlockBehaviour.Properties standardBehavior() + { + return BlockBehaviour.Properties.of(Material.STONE).requiresCorrectToolForDrops().strength(7F).destroyTime(6).isValidSpawn(ModBlocks::neverSpawn); + } + private static BlockBehaviour.Properties gratingBlock() + { + return standardBehavior() + .noOcclusion() + .strength(0.5f, 2000f) + .isViewBlocking(ModBlocks::never); + } + + private static BlockBehaviour.Properties stoneLikeBehavior() + { + return BlockBehaviour.Properties.copy(Blocks.COBBLESTONE).isValidSpawn(ModBlocks::neverSpawn); + } + + private static BlockBehaviour.Properties explosionResistance() + { + return standardBehavior().explosionResistance(1200); + } + + private static BlockBehaviour.Properties noViewBlocking() + { + return standardBehavior().noOcclusion().isViewBlocking(ModBlocks::never); + } + + private static BlockBehaviour.Properties fullBright() + { + return standardBehavior().lightLevel((X)->{ + return 15; + }).noOcclusion(); + } + + private static BlockBehaviour.Properties standard = standardBehavior(); + + private static BlockBehaviour.Properties explosionResistance = explosionResistance(); + + private static BlockBehaviour.Properties noViewBlocking = noViewBlocking(); + + private static BlockBehaviour.Properties stone = stoneLikeBehavior(); + + private static BlockBehaviour.Properties gratingBlock = gratingBlock(); + + private static BlockBehaviour.Properties poolLightClean = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 15); + private static BlockBehaviour.Properties poolLightDirty = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 12); + private static BlockBehaviour.Properties poolLightFilthy = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 4); + + + public static RegistryObject registerWithItem(RegistryObject blk, Item.Properties props) + { + CreativeModeTabs.addToAETab(ITEMS.register(blk.getId().getPath(), ()->new BlockItem(blk.get(), props.tab(CreativeModeTabs.AETAB)))); + + return blk; + } + + + + public static final RegistryObject DARK_RED_WOOL = registerWithItem(BLOCKS.register("dark_red_wool", ()->new Block(BlockBehaviour.Properties.copy(Blocks.RED_WOOL))), new Item.Properties()); + + public static final RegistryObject DARK_RED_CARPET = registerWithItem(BLOCKS.register("dark_red_carpet", ()->new CarpetBlock(BlockBehaviour.Properties.copy(Blocks.RED_CARPET))), new Item.Properties()); + + + public static final RegistryObject ETERNIUM_ORE_BLOCK = registerWithItem(BLOCKS.register("eternium_ore_block", ()->new DropExperienceBlock(explosionResistance)), new Item.Properties()); + + public static final RegistryObject ETERNIUM_BLOCK = registerWithItem(BLOCKS.register("eternium_block", ()->new Block(explosionResistance)), new Item.Properties()); + + public static final RegistryObject DEEPSLATE_ETERNIUM_ORE_BLOCK = registerWithItem(BLOCKS.register("deepslate_eternium_ore_block", ()->new DropExperienceBlock(explosionResistance)), new Item.Properties()); + + public static final RegistryObject VOID = registerWithItem(BLOCKS.register("void", ()->new Block(fullBright().noCollission())), new Item.Properties()); + + public static final RegistryObject WHITEOUT = registerWithItem(BLOCKS.register("whiteout", ()->new Block(fullBright().noCollission())), new Item.Properties()); + + public static final RegistryObject BLOOD_RED = registerWithItem(BLOCKS.register("blood_red", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject RED_TILE = registerWithItem(BLOCKS.register("red_tile", ()-> new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject RED_STAIRS = registerWithItem(BLOCKS.register("red_stairs", ()-> new StairBlock(BLOOD_RED.get()::defaultBlockState, fullBright())), new Item.Properties()); + + public static final RegistryObject RED_TILE_BR = registerWithItem(BLOCKS.register("red_tile_br", ()->new RotatableBlock(fullBright())), new Item.Properties()); + + public static final RegistryObject RED_TILE_TO_WALL = registerWithItem(BLOCKS.register("red_tile_to_wall", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject RED_WALL_V1 = registerWithItem(BLOCKS.register("red_wall_variant_1", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject RED_WALL_V2 = registerWithItem(BLOCKS.register("red_wall_variant_2", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject CYAN = registerWithItem(BLOCKS.register("cyan", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject CYAN_TILE = registerWithItem(BLOCKS.register("cyan_tile", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject CYAN_STAIRS = registerWithItem(BLOCKS.register("cyan_stairs", ()->new StairBlock(CYAN.get()::defaultBlockState, fullBright())), new Item.Properties()); + + public static final RegistryObject CYAN_TILE_BR = registerWithItem(BLOCKS.register("cyan_tile_br", ()->new RotatableBlock(fullBright())), new Item.Properties()); + + public static final RegistryObject CYAN_TILE_TO_WALL = registerWithItem(BLOCKS.register("cyan_tile_to_wall", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject CYAN_WALL_V1 = registerWithItem(BLOCKS.register("cyan_wall_variant_1", ()->new Block(fullBright())), new Item.Properties()); + + public static final RegistryObject CYAN_WALL_V2 = registerWithItem(BLOCKS.register("cyan_wall_variant_2", ()->new Block(fullBright())), new Item.Properties()); + + + + + + + + + + + public static final RegistryObject POOL_TILE = registerWithItem(BLOCKS.register("pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("pool_tile_stairs", ()->new StairBlock(POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject POOL_TILE_SLAB = registerWithItem(BLOCKS.register("pool_tile_slab", ()->new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject POOL_TILE_WALL = registerWithItem(BLOCKS.register("pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + public static final RegistryObject POOL_LIGHT = registerWithItem(BLOCKS.register("pool_light", ()->new Block(poolLightClean)), new Item.Properties()); + + + + public static final RegistryObject DIRTY_POOL_TILE = registerWithItem(BLOCKS.register("dirty_pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("dirty_pool_tile_stairs", ()->new StairBlock(DIRTY_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("dirty_pool_tile_slab", ()-> new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_POOL_TILE_WALL = registerWithItem(BLOCKS.register("dirty_pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_POOL_LIGHT = registerWithItem(BLOCKS.register("dirty_pool_light", ()->new Block(poolLightDirty)), new Item.Properties()); + + public static final RegistryObject FILTHY_POOL_LIGHT = registerWithItem(BLOCKS.register("filthy_pool_light", ()->new Block(poolLightFilthy)), new Item.Properties()); + + + + + + + public static final RegistryObject DARK_POOL_TILE = registerWithItem(BLOCKS.register("dark_pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject DARK_POOL_LIGHT = registerWithItem(BLOCKS.register("dark_pool_light", ()->new Block(poolLightClean)), new Item.Properties()); + + public static final RegistryObject DARK_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("dark_pool_tile_stairs", ()->new StairBlock(DARK_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject DARK_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("dark_pool_tile_slab",()-> new SlabBlock(stone)), new Item.Properties()); + + + + + + public static final RegistryObject BLUE_POOL_TILE = registerWithItem(BLOCKS.register("blue_pool_tile",()-> new Block(stone)), new Item.Properties()); + + public static final RegistryObject BLUE_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("blue_pool_tile_stairs", ()->new StairBlock(BLUE_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject BLUE_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("blue_pool_tile_slab",()-> new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject BLUE_POOL_TILE_WALL = registerWithItem(BLOCKS.register("blue_pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + public static final RegistryObject BLUE_POOL_LIGHT = registerWithItem(BLOCKS.register("blue_pool_light", ()->new Block(poolLightClean)), new Item.Properties()); + + + + + + public static final RegistryObject DIRTY_BLUE_POOL_TILE = registerWithItem(BLOCKS.register("dirty_blue_pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_BLUE_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("dirty_blue_pool_tile_stairs", ()->new StairBlock(DIRTY_BLUE_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_BLUE_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("dirty_blue_pool_tile_slab", ()->new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_BLUE_POOL_TILE_WALL = registerWithItem(BLOCKS.register("dirty_blue_pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_BLUE_POOL_LIGHT = registerWithItem(BLOCKS.register("dirty_blue_pool_light", ()->new Block(poolLightDirty)), new Item.Properties()); + + public static final RegistryObject FILTHY_BLUE_POOL_LIGHT = registerWithItem(BLOCKS.register("filthy_blue_pool_light", ()->new Block(poolLightFilthy)), new Item.Properties()); + + + + + + + public static final RegistryObject RED_POOL_TILE = registerWithItem(BLOCKS.register("red_pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject RED_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("red_pool_tile_stairs", ()->new StairBlock(RED_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject RED_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("red_pool_tile_slab", ()->new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject RED_POOL_TILE_WALL = registerWithItem(BLOCKS.register("red_pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + public static final RegistryObject RED_POOL_LIGHT = registerWithItem(BLOCKS.register("red_pool_light", ()->new Block(poolLightClean)), new Item.Properties()); + + + + + + + + public static final RegistryObject DIRTY_RED_POOL_TILE = registerWithItem(BLOCKS.register("dirty_red_pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_RED_POOL_LIGHT = registerWithItem(BLOCKS.register("dirty_red_pool_light", ()->new Block(poolLightDirty)), new Item.Properties()); + + public static final RegistryObject FILTHY_RED_POOL_LIGHT = registerWithItem(BLOCKS.register("filthy_red_pool_light", ()->new Block(poolLightFilthy)), new Item.Properties()); + + public static final RegistryObject DIRTY_RED_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("dirty_red_pool_tile_stairs", ()->new StairBlock(DIRTY_RED_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_RED_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("dirty_red_pool_tile_slab", ()->new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_RED_POOL_TILE_WALL = registerWithItem(BLOCKS.register("dirty_red_pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + + + + + + + + + + public static final RegistryObject GREEN_POOL_TILE = registerWithItem(BLOCKS.register("green_pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject GREEN_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("green_pool_tile_stairs", ()->new StairBlock(GREEN_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject GREEN_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("green_pool_tile_slab", ()->new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject GREEN_POOL_TILE_WALL = registerWithItem(BLOCKS.register("green_pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + public static final RegistryObject GREEN_POOL_LIGHT = registerWithItem(BLOCKS.register("green_pool_light", ()->new Block(poolLightClean)), new Item.Properties()); + + + + + + + + + + + public static final RegistryObject DIRTY_GREEN_POOL_TILE = registerWithItem(BLOCKS.register("dirty_green_pool_tile", ()->new Block(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_GREEN_POOL_LIGHT = registerWithItem(BLOCKS.register("dirty_green_pool_light", ()->new Block(poolLightDirty)), new Item.Properties()); + + public static final RegistryObject FILTHY_GREEN_POOL_LIGHT = registerWithItem(BLOCKS.register("filthy_green_pool_light", ()->new Block(poolLightFilthy)), new Item.Properties()); + + public static final RegistryObject DIRTY_GREEN_POOL_TILE_STAIRS = registerWithItem(BLOCKS.register("dirty_green_pool_tile_stairs", ()->new StairBlock(DIRTY_GREEN_POOL_TILE.get()::defaultBlockState, stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_GREEN_POOL_TILE_SLAB = registerWithItem(BLOCKS.register("dirty_green_pool_tile_slab", ()->new SlabBlock(stone)), new Item.Properties()); + + public static final RegistryObject DIRTY_GREEN_POOL_TILE_WALL = registerWithItem(BLOCKS.register("dirty_green_pool_tile_wall", ()->new WallBlock(stone)), new Item.Properties()); + + + + + + + + + /* + + ENGINEERS DECOR BLOCKS + + */ + + public static final RegistryObject CLINKER_BRICK_BLOCK = registerWithItem(BLOCKS.register("clinker_brick_block", ()->new Block(standardBehavior().strength(0.5f, 7f).sound(SoundType.STONE) + )), new Item.Properties()); + + public static final RegistryObject CLINKER_BRICK_SLAB = registerWithItem(BLOCKS.register("clinker_brick_slab", ()->new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE_SLAB))), new Item.Properties()); + + public static final RegistryObject CLINKER_BRICK_STAIRS = registerWithItem(BLOCKS.register("clinker_brick_stairs", ()->new StairBlock(CLINKER_BRICK_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE_STAIRS))), new Item.Properties()); + + public static final RegistryObject CLINKER_BRICK_WALL = registerWithItem(BLOCKS.register("clinker_brick_wall", ()->new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE_BRICK_WALL))), new Item.Properties()); + + public static final RegistryObject CLINKER_BRICK_STAINED_BLOCK = registerWithItem(BLOCKS.register("clinker_brick_stained_block", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); + + public static final RegistryObject CLINKER_BRICK_STAINED_SLAB = registerWithItem(BLOCKS.register("clinker_brick_stained_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); + + public static final RegistryObject CLINKER_BRICK_STAINED_STAIRS = registerWithItem(BLOCKS.register("clinker_brick_stained_stairs", ()-> new StairBlock(CLINKER_BRICK_STAINED_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); + + /*public static final RegistryObject CLINKER_BRICK_VERTICAL_SLAB_STRUCTURED = registerWithItem(BLOCKS.register("clinker_brick_vertical_slab_structured", () -> new StandardBlocks.HorizontalWaterLoggable( + StandardBlocks.CFG_CUTOUT | StandardBlocks.CFG_HORIZIONTAL | StandardBlocks.CFG_LOOK_PLACEMENT, + BlockBehaviour.Properties.of().strength(0.5f, 7f).sound(SoundType.STONE), + new AABB[]{ + Auxiliaries.getPixeledAABB(0, 0, 0, 16, 16, 8), + } + )), new Item.Properties());*/ + + public static final RegistryObject SLAG_BRICK_BLOCK = registerWithItem(BLOCKS.register("slag_brick_block", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); + + public static final RegistryObject SLAG_BRICK_SLAB = registerWithItem(BLOCKS.register("slag_brick_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); + + public static final RegistryObject SLAG_BRICK_STAIRS = registerWithItem(BLOCKS.register("slag_brick_stairs", ()-> new StairBlock(SLAG_BRICK_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); + + public static final RegistryObject SLAG_BRICK_WALL = registerWithItem(BLOCKS.register("slag_brick_wall", ()-> new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE_BRICK_WALL))), new Item.Properties()); + + public static final RegistryObject REBAR_CONCRETE_BLOCK = registerWithItem(BLOCKS.register("rebar_concrete", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE).isValidSpawn(ModBlocks::neverSpawn).strength(1f, 2000f))), new Item.Properties()); + + public static final RegistryObject REBAR_CONCRETE_SLAB = registerWithItem(BLOCKS.register("rebar_concrete_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); + + public static final RegistryObject REBAR_CONCRETE_STAIRS = registerWithItem(BLOCKS.register("rebar_concrete_stairs", ()-> new StairBlock(ModBlocks.REBAR_CONCRETE_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); + + public static final RegistryObject REBAR_CONCRETE_WALL = registerWithItem(BLOCKS.register("rebar_concrete_wall", ()-> new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); + + public static final RegistryObject REBAR_CONCRETE_TILE_BLOCK = registerWithItem(BLOCKS.register("rebar_concrete_tile", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE).isValidSpawn(ModBlocks::neverSpawn).strength(1f, 2000f))), new Item.Properties()); + + public static final RegistryObject REBAR_CONCRETE_TILE_SLAB = registerWithItem(BLOCKS.register("rebar_concrete_tile_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); + + public static final RegistryObject REBAR_CONCRETE_TILE_STAIRS = registerWithItem(BLOCKS.register("rebar_concrete_tile_stairs", ()-> new StairBlock(ModBlocks.REBAR_CONCRETE_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); + + /*public static final RegistryObject REBAR_CONCRETE_HALFSLAB = registerWithItem(BLOCKS.register("halfslab_rebar_concrete", () -> new SlabSliceBlock( + StandardBlocks.CFG_CUTOUT, + BlockBehaviour.Properties.of().strength(1.0f, 2000f).sound(SoundType.STONE).isValidSpawn(ModBlocks::neverSpawn) + )), new Item.Properties());*/ + + public static final RegistryObject PANZER_GLASS_BLOCK = registerWithItem(BLOCKS.register("panzerglass_block", ()-> new Block(noViewBlocking().noOcclusion().strength(0.5f, 2000f).isValidSpawn(ModBlocks::neverSpawn).sound(SoundType.METAL))), new Item.Properties()); + + public static final RegistryObject PANZER_GLASS_SLAB = registerWithItem(BLOCKS.register("panzerglass_slab", ()-> new SlabBlock(noViewBlocking().noOcclusion().strength(0.5f, 2000f).isValidSpawn(ModBlocks::neverSpawn).sound(SoundType.METAL))), new Item.Properties()); + + public static final RegistryObject OLD_INDUSTRIAL_WOOD_PLANKS = registerWithItem(BLOCKS.register("old_industrial_wood_planks", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); + + public static final RegistryObject OLD_INDUSTRIAL_WOOD_SLAB = registerWithItem(BLOCKS.register("old_industrial_wood_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); + + public static final RegistryObject OLD_INDUSTRIAL_WOOD_STAIRS = registerWithItem(BLOCKS.register("old_industrial_wood_stairs", ()-> new StairBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_PLANKS.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); + + public static final RegistryObject OLD_INDUSTRIAL_WOOD_DOOR = registerWithItem(BLOCKS.register("old_industrial_wood_door", ()-> new DoorBlock(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).noOcclusion().sound(SoundType.WOOD))), new Item.Properties()); + +} + diff --git a/src/main/java/com/zontreck/block/RegistryObj.java b/src/main/java/com/zontreck/block/RegistryObj.java new file mode 100644 index 0000000..e58ae29 --- /dev/null +++ b/src/main/java/com/zontreck/block/RegistryObj.java @@ -0,0 +1,19 @@ +package com.zontreck.block; + + +import net.minecraft.world.item.Item; +import net.minecraft.world.level.block.Block; +import net.minecraftforge.registries.RegistryObject; + +public class RegistryObj +{ + public RegistryObject block; + public RegistryObject item; + + public RegistryObj(RegistryObject blk, RegistryObject item) + { + this.block=blk; + this.item=item; + } +} + diff --git a/src/main/java/com/zontreck/block/RotatableBlock.java b/src/main/java/com/zontreck/block/RotatableBlock.java new file mode 100644 index 0000000..8657857 --- /dev/null +++ b/src/main/java/com/zontreck/block/RotatableBlock.java @@ -0,0 +1,27 @@ +package com.zontreck.block; + + +import net.minecraft.world.item.context.BlockPlaceContext; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.HorizontalDirectionalBlock; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.StateDefinition; + +public class RotatableBlock extends HorizontalDirectionalBlock +{ + protected RotatableBlock(Properties pProperties) { + super(pProperties); + } + + @Override + protected void createBlockStateDefinition(StateDefinition.Builder pBuilder) { + super.createBlockStateDefinition(pBuilder); + pBuilder.add(FACING); + } + + + @Override + public BlockState getStateForPlacement(BlockPlaceContext pContext) { + return defaultBlockState().setValue(FACING, pContext.getHorizontalDirection()); + } +} diff --git a/src/main/java/com/zontreck/block/VoidBlock.java b/src/main/java/com/zontreck/block/VoidBlock.java new file mode 100644 index 0000000..cc26b4f --- /dev/null +++ b/src/main/java/com/zontreck/block/VoidBlock.java @@ -0,0 +1,13 @@ +package com.zontreck.block; + + +import net.minecraft.world.level.block.Block; + +public class VoidBlock extends Block +{ + public VoidBlock(Properties pProperties) { + super(pProperties); + } + + +} diff --git a/src/main/java/com/zontreck/block/types/AlternatePaneBlock.java b/src/main/java/com/zontreck/block/types/AlternatePaneBlock.java new file mode 100644 index 0000000..ebf5ac0 --- /dev/null +++ b/src/main/java/com/zontreck/block/types/AlternatePaneBlock.java @@ -0,0 +1,41 @@ +package com.zontreck.block.types; + + +import net.minecraft.core.Direction; +import net.minecraft.world.level.block.IronBarsBlock; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.properties.BooleanProperty; + +import java.util.EnumMap; + +/** Pane block with sensible culling */ +public class AlternatePaneBlock extends IronBarsBlock { + public static final EnumMap DIRECTIONS; + static { + DIRECTIONS = new EnumMap<>(Direction.class); + DIRECTIONS.put(Direction.NORTH, NORTH); + DIRECTIONS.put(Direction.EAST, EAST); + DIRECTIONS.put(Direction.SOUTH, SOUTH); + DIRECTIONS.put(Direction.WEST, WEST); + } + + public AlternatePaneBlock(Properties builder) { + super(builder); + } + + @Override + public boolean skipRendering(BlockState state, BlockState adjacentBlockState, Direction side) { + // cull top and bottom if all props that we have are contained in the above or below + if (adjacentBlockState.getBlock() == this && side.getAxis().isVertical()) { + for (Direction dir : Direction.Plane.HORIZONTAL) { + BooleanProperty prop = DIRECTIONS.get(dir); + if (state.getValue(prop) && !adjacentBlockState.getValue(prop)) { + return false; + } + } + return true; + } + return super.skipRendering(state, adjacentBlockState, side); + } +} + diff --git a/src/main/java/dev/zontreck/essentials/client/renderer/TimeBoostEntityRenderer.java b/src/main/java/com/zontreck/client/TimeBoostEntityRenderer.java similarity index 93% rename from src/main/java/dev/zontreck/essentials/client/renderer/TimeBoostEntityRenderer.java rename to src/main/java/com/zontreck/client/TimeBoostEntityRenderer.java index 962824d..cc8f712 100644 --- a/src/main/java/dev/zontreck/essentials/client/renderer/TimeBoostEntityRenderer.java +++ b/src/main/java/com/zontreck/client/TimeBoostEntityRenderer.java @@ -1,9 +1,9 @@ -package dev.zontreck.essentials.client.renderer; +package com.zontreck.client; import com.mojang.blaze3d.vertex.PoseStack; import com.mojang.math.Quaternion; import com.mojang.math.Vector3f; -import dev.zontreck.essentials.entities.TimeBoostEntity; +import com.zontreck.entities.TimeBoostEntity; import net.minecraft.ChatFormatting; import net.minecraft.client.Minecraft; import net.minecraft.client.gui.Font; @@ -12,8 +12,7 @@ import net.minecraft.client.renderer.entity.EntityRenderer; import net.minecraft.client.renderer.entity.EntityRendererProvider; import net.minecraft.resources.ResourceLocation; -public class TimeBoostEntityRenderer extends EntityRenderer -{ +public class TimeBoostEntityRenderer extends EntityRenderer { public TimeBoostEntityRenderer(EntityRendererProvider.Context erp) { super(erp); diff --git a/src/main/java/com/zontreck/commands/CommandRegistry.java b/src/main/java/com/zontreck/commands/CommandRegistry.java new file mode 100644 index 0000000..32e8828 --- /dev/null +++ b/src/main/java/com/zontreck/commands/CommandRegistry.java @@ -0,0 +1,31 @@ +package com.zontreck.commands; + +import com.zontreck.commands.homes.DelHomeCommand; +import com.zontreck.commands.homes.HomeCommand; +import com.zontreck.commands.homes.HomesCommand; +import com.zontreck.commands.homes.SetHomeCommand; +import com.zontreck.commands.items.ShareItemInChatCommand; +import com.zontreck.commands.items.TIABDebug; +import com.zontreck.commands.teleport.*; +import net.minecraftforge.event.RegisterCommandsEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; + +@Mod.EventBusSubscriber(bus = Mod.EventBusSubscriber.Bus.FORGE) +public class CommandRegistry +{ + @SubscribeEvent + public static void onCommandRegister(RegisterCommandsEvent ev) { + TPACommand.register(ev.getDispatcher()); + TPAcceptCommand.register(ev.getDispatcher()); + TPDenyCommand.register(ev.getDispatcher()); + TPCancelCommand.register(ev.getDispatcher()); + TPAHereCommand.register(ev.getDispatcher()); + HomesCommand.register(ev.getDispatcher()); + SetHomeCommand.register(ev.getDispatcher()); + DelHomeCommand.register(ev.getDispatcher()); + HomeCommand.register(ev.getDispatcher()); + ShareItemInChatCommand.register(ev.getDispatcher()); + //TIABDebug.register(ev.getDispatcher()); + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/homes/DelHomeCommand.java b/src/main/java/com/zontreck/commands/homes/DelHomeCommand.java similarity index 68% rename from src/main/java/dev/zontreck/essentials/commands/homes/DelHomeCommand.java rename to src/main/java/com/zontreck/commands/homes/DelHomeCommand.java index 32e66a7..5daf5eb 100644 --- a/src/main/java/dev/zontreck/essentials/commands/homes/DelHomeCommand.java +++ b/src/main/java/com/zontreck/commands/homes/DelHomeCommand.java @@ -1,63 +1,65 @@ -package dev.zontreck.essentials.commands.homes; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.homes.HomesSuggestionProvider; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.commands.FunctionCommand; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.common.MinecraftForge; - -public class DelHomeCommand { - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register( - Commands.literal("rmhome") - .executes(c->rmHome(c.getSource(), "default")) - .then(Commands.argument("nickname", StringArgumentType.string()) - - ) - ); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int rmHome(CommandSourceStack ctx, String homeName) - { - - var exec = new CommandExecutionEvent(ctx.getPlayer(), "delhome"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - // Request homes -// String homeName = ""; -// CommandSourceStack ctx = ctx2.getSource(); -// homeName = StringArgumentType.getString(ctx2, "nickname"); -// if(homeName==null)return 0; - try{ - ServerPlayer p = ctx.getPlayerOrException(); - - AriasEssentials.player_homes.get(p.getUUID()).delete(homeName); - - - ChatHelpers.broadcastTo(p, ChatHelpers.macro(Messages.HOME_DELETE_SUCCESS), ctx.getServer()); - }catch(Exception e) - { - e.printStackTrace(); - - ChatHelpers.broadcastTo(ctx.getEntity().getUUID(), ChatHelpers.macro(Messages.HOME_DELETE_FAIL), ctx.getServer()); - } - return 0; - } - -} +package com.zontreck.commands.homes; + + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.zontreck.Messages; +import com.zontreck.events.CommandExecutionEvent; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; + +public class DelHomeCommand { + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register( + Commands.literal("rmhome") + .executes(c->rmHome(c.getSource(), "default")) + .then(Commands.argument("nickname", StringArgumentType.string()) + .executes(c->rmHome(c.getSource(), StringArgumentType.getString(c, "nickname"))) + + ) + ); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int rmHome(CommandSourceStack ctx, String homeName) + { + + var exec = new CommandExecutionEvent(ctx.getPlayer(), "rmhome"); + if(MinecraftForge.EVENT_BUS.post(exec)) + { + return 0; + } + // Request homes +// String homeName = ""; +// CommandSourceStack ctx = ctx2.getSource(); +// homeName = StringArgumentType.getString(ctx2, "nickname"); +// if(homeName==null)return 0; + try{ + ServerPlayer p = ctx.getPlayerOrException(); + + Profile prof = Profile.factory(p); + prof.homes.delete(homeName); + + prof.commit(); + + + ChatHelpers.broadcastTo(p, ChatHelpers.macro(Messages.HOME_DELETE_SUCCESS), ctx.getServer()); + }catch(Exception e) + { + e.printStackTrace(); + + ChatHelpers.broadcastTo(ctx.getEntity().getUUID(), ChatHelpers.macro(Messages.HOME_DELETE_FAIL), ctx.getServer()); + } + return 0; + } + +} diff --git a/src/main/java/dev/zontreck/essentials/commands/homes/HomeCommand.java b/src/main/java/com/zontreck/commands/homes/HomeCommand.java similarity index 75% rename from src/main/java/dev/zontreck/essentials/commands/homes/HomeCommand.java rename to src/main/java/com/zontreck/commands/homes/HomeCommand.java index 6787eb9..c291a12 100644 --- a/src/main/java/dev/zontreck/essentials/commands/homes/HomeCommand.java +++ b/src/main/java/com/zontreck/commands/homes/HomeCommand.java @@ -1,81 +1,81 @@ -package dev.zontreck.essentials.commands.homes; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; -import com.mojang.brigadier.exceptions.CommandSyntaxException; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.homes.Home; -import dev.zontreck.essentials.exceptions.NoSuchHomeException; -import dev.zontreck.essentials.homes.HomesSuggestionProvider; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.common.MinecraftForge; - -public class HomeCommand { - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("home").executes(c-> home(c.getSource(), "default")).then(Commands.argument("name", StringArgumentType.string()).executes(c->home(c.getSource(), StringArgumentType.getString(c, "name"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int home(CommandSourceStack ctx, String homeName) - { - var exec = new CommandExecutionEvent(ctx.getPlayer(), "home"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - // Request homes -// String homeName = ""; -// CommandSourceStack ctx = ctx2.getSource(); -// homeName = StringArgumentType.getString(ctx2, "nickname"); -// if(homeName==null)return 0; - try{ - ServerPlayer p = ctx.getPlayerOrException(); - Home home = AriasEssentials.player_homes.get(p.getUUID()).get(homeName); - - //Transaction tx = new Transaction(Bank.getAccount(p.getUUID()), Bank.SYSTEM, AEServerConfig.COST_TO_TP_HOME.get(), Instant.now().getEpochSecond()); - - //ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.PAYMENT_ATTEMPTING, - // "$" + String.valueOf(AEServerConfig.COST_TO_TP_HOME.get()), "SYSTEM"), p.server); - /*if(true) - { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.PAYMENT_SUCCESS), p.server); - }else { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.PAYMENT_FAILED), p.server); - return 0; - }*/ - - TeleportDestination dest = home.destination; - TeleportActioner.ApplyTeleportEffect(p); - TeleportContainer cont = new TeleportContainer(p, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), dest.getActualDimension()); - TeleportActioner.PerformTeleport(cont,false); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.TELEPORTING_HOME), ctx.getServer()); - }catch(CommandSyntaxException e) - { - e.printStackTrace(); - return 1; - }catch(NoSuchHomeException e) - { - - ChatHelpers.broadcastTo(ctx.getEntity().getUUID(), ChatHelpers.macro(Messages.TELEPORT_HOME_FAIL), ctx.getServer()); - return 0; - } - - - return 0; - } -} +package com.zontreck.commands.homes; + + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.zontreck.Messages; +import com.zontreck.events.CommandExecutionEvent; +import com.zontreck.exceptions.NoSuchHomeException; +import com.zontreck.homes.Home; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.util.TeleportActioner; +import com.zontreck.util.TeleportContainer; +import com.zontreck.util.TeleportDestination; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; + +public class HomeCommand { + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("home").executes(c-> home(c.getSource(), "default")).then(Commands.argument("name", StringArgumentType.string()).executes(c->home(c.getSource(), StringArgumentType.getString(c, "name"))))); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int home(CommandSourceStack ctx, String homeName) + { + var exec = new CommandExecutionEvent(ctx.getPlayer(), "home"); + if(MinecraftForge.EVENT_BUS.post(exec)) + { + return 0; + } + // Request homes +// String homeName = ""; +// CommandSourceStack ctx = ctx2.getSource(); +// homeName = StringArgumentType.getString(ctx2, "nickname"); +// if(homeName==null)return 0; + try{ + ServerPlayer p = ctx.getPlayerOrException(); + Profile prof = Profile.factory(p); + Home home = prof.homes.get(homeName); + + //Transaction tx = new Transaction(Bank.getAccount(p.getUUID()), Bank.SYSTEM, AEServerConfig.COST_TO_TP_HOME.get(), Instant.now().getEpochSecond()); + + //ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.PAYMENT_ATTEMPTING, + // "$" + String.valueOf(AEServerConfig.COST_TO_TP_HOME.get()), "SYSTEM"), p.server); + /*if(true) + { + ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.PAYMENT_SUCCESS), p.server); + }else { + ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.PAYMENT_FAILED), p.server); + return 0; + }*/ + + TeleportDestination dest = home.destination; + TeleportActioner.ApplyTeleportEffect(p); + TeleportContainer cont = new TeleportContainer(p, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), dest.getActualDimension()); + TeleportActioner.PerformTeleport(cont,false); + + ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.TELEPORTING_HOME), ctx.getServer()); + }catch(CommandSyntaxException e) + { + e.printStackTrace(); + return 1; + }catch(NoSuchHomeException e) + { + + ChatHelpers.broadcastTo(ctx.getEntity().getUUID(), ChatHelpers.macro(Messages.TELEPORT_HOME_FAIL), ctx.getServer()); + return 0; + } + + + return 0; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/homes/HomesCommand.java b/src/main/java/com/zontreck/commands/homes/HomesCommand.java similarity index 74% rename from src/main/java/dev/zontreck/essentials/commands/homes/HomesCommand.java rename to src/main/java/com/zontreck/commands/homes/HomesCommand.java index 36dbf9a..49ce00b 100644 --- a/src/main/java/dev/zontreck/essentials/commands/homes/HomesCommand.java +++ b/src/main/java/com/zontreck/commands/homes/HomesCommand.java @@ -1,102 +1,106 @@ -package dev.zontreck.essentials.commands.homes; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.context.CommandContext; -import com.mojang.brigadier.exceptions.CommandSyntaxException; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.homes.Home; -import dev.zontreck.essentials.homes.Homes; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.chat.Clickable; -import dev.zontreck.libzontreck.chat.HoverTip; -import dev.zontreck.libzontreck.chestgui.ChestGUI; -import dev.zontreck.libzontreck.chestgui.ChestGUIButton; -import dev.zontreck.libzontreck.chestgui.ChestGUIIdentifier; -import dev.zontreck.libzontreck.lore.LoreEntry; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector2i; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.network.chat.Style; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.item.Items; - -public class HomesCommand { - private static final ChestGUIIdentifier HOMES_GUI_ID = new ChestGUIIdentifier("homes-gui"); - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("homes").executes(HomesCommand::getHomes)); - } - - private static int getHomes(CommandContext ctx) - { - // Request homes - try{ - ServerPlayer player = ctx.getSource().getPlayerOrException(); - - Homes homes = AriasEssentials.player_homes.get(player.getUUID()); - - ChatHelpers.broadcastTo(player.getUUID(), ChatHelpers.macro(Messages.HOME_COUNT, String.valueOf(homes.count())), player.server); - - ChestGUI gui = ChestGUI.builder().withGUIId(HOMES_GUI_ID).withTitle("Homes").withPlayer(player.getUUID()); - - int iconX = 0; - int iconY = 0; - - for (Home string : homes.getList()) { - Style st = Style.EMPTY.withFont(Style.DEFAULT_FONT).withHoverEvent(HoverTip.get(ChatHelpers.macroize(Messages.HOME_HOVER_TEXT))).withClickEvent(Clickable.command("/home "+string.homeName)); - - ItemStack stack = string.homeIcon.copy(); - if(stack.is(Items.AIR)) - { - stack = new ItemStack(Items.GRASS_BLOCK, 1); - } - stack.setHoverName(Component.literal(string.homeName)); - - ChestGUIButton button = new ChestGUIButton(stack, (stackx, container, lore)-> { - - TeleportDestination dest = string.destination; - TeleportActioner.ApplyTeleportEffect(player); - TeleportContainer cont = new TeleportContainer(player, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), dest.getActualDimension()); - TeleportActioner.PerformTeleport(cont, false); - gui.close(); - }, new Vector2i(iconX, iconY)) - .withInfo(new LoreEntry.Builder().text(ChatColor.doColors("!Dark_Green!Click here to go to this home")).build()) - .withInfo(new LoreEntry.Builder().text(ChatHelpers.macro("!Dark_Purple!This home is in the dimension [0]", string.destination.Dimension).getString()).bold(true).build()); - - iconY++; - if(iconY>=9) - { - iconY=0; - iconX++; - } - if(homes.count() > (2*9)) - ChatHelpers.broadcastTo(player.getUUID(), ChatHelpers.macro(Messages.HOME_FORMAT, string.homeName).setStyle(st), ctx.getSource().getServer()); - else - gui.withButton(button); // Put this in the else case, to prevent a error when exceeding inventory slots - - } - - if(homes.count()<=27) - gui.open(); - }catch(CommandSyntaxException ex) - { - ex.printStackTrace(); - - } - - - - return 0; - } - -} +package com.zontreck.commands.homes; + + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.mojang.brigadier.context.CommandContext; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.zontreck.Messages; +import com.zontreck.events.CommandExecutionEvent; +import com.zontreck.exceptions.NoSuchHomeException; +import com.zontreck.homes.Home; +import com.zontreck.homes.Homes; +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.chat.Clickable; +import com.zontreck.libzontreck.chat.HoverTip; +import com.zontreck.libzontreck.chestgui.ChestGUI; +import com.zontreck.libzontreck.chestgui.ChestGUIButton; +import com.zontreck.libzontreck.chestgui.ChestGUIIdentifier; +import com.zontreck.libzontreck.lore.LoreEntry; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.vectors.Vector2i; +import com.zontreck.util.TeleportActioner; +import com.zontreck.util.TeleportContainer; +import com.zontreck.util.TeleportDestination; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.network.chat.Component; +import net.minecraft.network.chat.Style; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Items; +import net.minecraftforge.common.MinecraftForge; + +public class HomesCommand { + private static final ChestGUIIdentifier HOMES_GUI_ID = new ChestGUIIdentifier("homes-gui"); + + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("homes").executes(HomesCommand::getHomes)); + } + + private static int getHomes(CommandContext ctx) + { + // Request homes + try{ + ServerPlayer player = ctx.getSource().getPlayerOrException(); + + Profile prof = Profile.factory(player); + Homes homes = prof.homes; + + ChatHelpers.broadcastTo(player.getUUID(), ChatHelpers.macro(Messages.HOME_COUNT, String.valueOf(homes.count())), player.server); + + ChestGUI gui = ChestGUI.builder().withGUIId(HOMES_GUI_ID).withTitle("Homes").withPlayer(player.getUUID()); + + int iconX = 0; + int iconY = 0; + + for (Home string : homes.getList()) { + Style st = Style.EMPTY.withFont(Style.DEFAULT_FONT).withHoverEvent(HoverTip.get(ChatHelpers.macroize(Messages.HOME_HOVER_TEXT))).withClickEvent(Clickable.command("/home "+string.homeName)); + + ItemStack stack = string.homeIcon.copy(); + if(stack.is(Items.AIR)) + { + stack = new ItemStack(Items.GRASS_BLOCK, 1); + } + stack.setHoverName(Component.literal(string.homeName)); + + ChestGUIButton button = new ChestGUIButton(stack, (stackx, container, lore)-> { + + TeleportDestination dest = string.destination; + TeleportActioner.ApplyTeleportEffect(player); + TeleportContainer cont = new TeleportContainer(player, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), dest.getActualDimension()); + TeleportActioner.PerformTeleport(cont, false); + gui.close(); + }, new Vector2i(iconX, iconY)) + .withInfo(new LoreEntry.Builder().text(ChatColor.doColors("!Dark_Green!Click here to go to this home")).build()) + .withInfo(new LoreEntry.Builder().text(ChatHelpers.macro("!Dark_Purple!This home is in the dimension [0]", string.destination.Dimension).getString()).bold(true).build()); + + iconY++; + if(iconY>=9) + { + iconY=0; + iconX++; + } + if(homes.count() > (2*9)) + ChatHelpers.broadcastTo(player.getUUID(), ChatHelpers.macro(Messages.HOME_FORMAT, string.homeName).setStyle(st), ctx.getSource().getServer()); + else + gui.withButton(button); // Put this in the else case, to prevent a error when exceeding inventory slots + + } + + if(homes.count()<=27) + gui.open(); + }catch(CommandSyntaxException ex) + { + ex.printStackTrace(); + + } + + + return 0; + } + +} \ No newline at end of file diff --git a/src/main/java/dev/zontreck/essentials/commands/homes/SetHomeCommand.java b/src/main/java/com/zontreck/commands/homes/SetHomeCommand.java similarity index 62% rename from src/main/java/dev/zontreck/essentials/commands/homes/SetHomeCommand.java rename to src/main/java/com/zontreck/commands/homes/SetHomeCommand.java index 2d0e4ca..01ecf3b 100644 --- a/src/main/java/dev/zontreck/essentials/commands/homes/SetHomeCommand.java +++ b/src/main/java/com/zontreck/commands/homes/SetHomeCommand.java @@ -1,91 +1,95 @@ -package dev.zontreck.essentials.commands.homes; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.SQLException; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; -import com.mojang.brigadier.exceptions.CommandSyntaxException; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.homes.Home; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector2f; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class SetHomeCommand { - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("sethome").executes(c->setHome(c.getSource(), "default")).then(Commands.argument("nickname", StringArgumentType.string()).executes(c -> setHome(c.getSource(), StringArgumentType.getString(c, "nickname"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int setHome(CommandSourceStack ctx, String homeName) - { - - var exec = new CommandExecutionEvent(ctx.getPlayer(), "sethome"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - // Request homes -// String homeName = ""; -// CommandSourceStack ctx = ctx2.getSource(); -// homeName = StringArgumentType.getString(ctx2, "nickname"); -// if(homeName==null)return 0; - - ServerPlayer p; - try { - p = ctx.getPlayerOrException(); - - - if(TeleportActioner.isBlacklistedDimension(p.getLevel())) - { - ChatHelpers.broadcastTo(p, ChatHelpers.macro(Messages.ESSENTIALS_PREFIX + AEServerConfig.getInstance().messages.BlacklistedDimensionError), p.server); - - return 0; - } - - Vec3 position = p.position(); - Vec2 rot = p.getRotationVector(); - - TeleportDestination dest = new TeleportDestination(new Vector3d(position), new Vector2f(rot), p.getLevel()); - BlockState bs = p.getLevel().getBlockState(dest.Position.moveDown().asBlockPos()); - - Home newhome = new Home(p, homeName, dest, new ItemStack(p.getBlockStateOn().getBlock().asItem())); - AriasEssentials.player_homes.get(p.getUUID()).add(newhome); - - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.HOME_CREATE_SUCCESS), ctx.getServer()); - } catch (CommandSyntaxException e) { - - ChatHelpers.broadcastTo(ctx.getEntity().getUUID(), ChatHelpers.macro(Messages.HOME_CREATE_FAIL), ctx.getServer()); - e.printStackTrace(); - } - - - return 0; - } - -} +package com.zontreck.commands.homes; + + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.zontreck.Messages; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.events.CommandExecutionEvent; +import com.zontreck.homes.Home; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.vectors.Vector2f; +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.util.TeleportActioner; +import com.zontreck.util.TeleportDestination; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.Vec2; +import net.minecraft.world.phys.Vec3; +import net.minecraftforge.common.MinecraftForge; + +public class SetHomeCommand { + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register( + Commands.literal("sethome") + .executes(c->setHome(c.getSource(), "default")) + .then(Commands.argument("nickname", StringArgumentType.string()) + .executes(c -> setHome(c.getSource(), StringArgumentType.getString(c, "nickname"))) + ) + + ); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int setHome(CommandSourceStack ctx, String homeName) + { + + var exec = new CommandExecutionEvent(ctx.getPlayer(), "sethome"); + if(MinecraftForge.EVENT_BUS.post(exec)) + { + return 0; + } + // Request homes +// String homeName = ""; +// CommandSourceStack ctx = ctx2.getSource(); +// homeName = StringArgumentType.getString(ctx2, "nickname"); +// if(homeName==null)return 0; + + ServerPlayer p; + try { + p = ctx.getPlayerOrException(); + + + if(TeleportActioner.isBlacklistedDimension(p.getLevel())) + { + ChatHelpers.broadcastTo(p, ChatHelpers.macro(Messages.ESSENTIALS_PREFIX + AEServerConfig.getInstance().messages.BlacklistedDimensionError), p.server); + + return 0; + } + + Vec3 position = p.position(); + Vec2 rot = p.getRotationVector(); + + TeleportDestination dest = new TeleportDestination(new Vector3d(position), new Vector2f(rot), p.getLevel()); + BlockState bs = p.getLevel().getBlockState(dest.Position.moveDown().asBlockPos()); + + Home newhome = new Home(p, homeName, dest, new ItemStack(p.getBlockStateOn().getBlock().asItem())); + + Profile prof = Profile.factory(p); + prof.homes.add(newhome); + prof.commit(); + + + ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.HOME_CREATE_SUCCESS), ctx.getServer()); + } catch (CommandSyntaxException e) { + + ChatHelpers.broadcastTo(ctx.getEntity().getUUID(), ChatHelpers.macro(Messages.HOME_CREATE_FAIL), ctx.getServer()); + e.printStackTrace(); + } + + + return 0; + } + +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/commands/items/ShareItemInChatCommand.java b/src/main/java/com/zontreck/commands/items/ShareItemInChatCommand.java new file mode 100644 index 0000000..0132d23 --- /dev/null +++ b/src/main/java/com/zontreck/commands/items/ShareItemInChatCommand.java @@ -0,0 +1,60 @@ +package com.zontreck.commands.items; + + +import com.mojang.brigadier.CommandDispatcher; +import com.zontreck.Messages; +import com.zontreck.libzontreck.chat.HoverTip; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.network.chat.MutableComponent; +import net.minecraft.network.chat.Style; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.InteractionHand; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.AirItem; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.server.ServerLifecycleHooks; + +public class ShareItemInChatCommand { + + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("shareitem").executes(c->share_item(c.getSource()))); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int share_item(CommandSourceStack source) { + + if(source.getEntity() instanceof Player) + { + ServerPlayer play = (ServerPlayer)source.getEntity(); + ItemStack is = play.getItemInHand(InteractionHand.MAIN_HAND); + if(is.getItem() instanceof AirItem) + { + play.displayClientMessage(ChatHelpers.macro(Messages.ESSENTIALS_PREFIX +" !Dark_Red!You cannot share air in the chat."), false); + return 0; + } + + Profile prof = Profile.factory(play); + + + MutableComponent component = ChatHelpers.macro(Messages.ESSENTIALS_PREFIX).append(is.getDisplayName()).append(ChatHelpers.macro(" !White!-!Dark_Purple! Hover here to see the item that "+prof.name_color+prof.nickname+"!Dark_Purple! shared")); + Style style = Style.EMPTY.withFont(Style.DEFAULT_FONT); + component = component.withStyle(style.withHoverEvent(HoverTip.getItem(is))); + + ChatHelpers.broadcast(component, ServerLifecycleHooks.getCurrentServer()); + + }else { + return 1; + } + + return 0; + } +} diff --git a/src/main/java/com/zontreck/commands/items/TIABDebug.java b/src/main/java/com/zontreck/commands/items/TIABDebug.java new file mode 100644 index 0000000..4efd3f9 --- /dev/null +++ b/src/main/java/com/zontreck/commands/items/TIABDebug.java @@ -0,0 +1,54 @@ +package com.zontreck.commands.items; + +import com.mojang.brigadier.CommandDispatcher; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.items.abstracts.AbstractTIAB; +import com.zontreck.items.impl.TimeBottle; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.item.ItemStack; + +public class TIABDebug { + + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("tiab_set_expire").executes(c->setBottleExpired(c.getSource()))); + + dispatcher.register(Commands.literal("tiab_shift_uses").executes(c->shiftBottleUses(c.getSource()))); + + dispatcher.register(Commands.literal("tiab_reset").executes(c->resetBottle(c.getSource()))); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + private static int setBottleExpired(CommandSourceStack stack) { + ItemStack item = stack.getPlayer().getMainHandItem(); + TimeBottle TIAB = (TimeBottle) item.getItem(); + + TIAB.setTotalAccumulatedTime(item, Integer.MAX_VALUE); + TIAB.setExpired(item); + + return 0; + } + + private static int shiftBottleUses(CommandSourceStack stack) { + + ItemStack item = stack.getPlayer().getMainHandItem(); + TimeBottle TIAB = (TimeBottle) item.getItem(); + + TIAB.setStoredEnergy(item, 20 * AEServerConfig.getInstance().bottles.eachUseDuration * 20); + + return 0; + } + + private static int resetBottle(CommandSourceStack stack) { + + ItemStack item = stack.getPlayer().getMainHandItem(); + item.setTag(new CompoundTag()); + + return 0; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TPACommand.java b/src/main/java/com/zontreck/commands/teleport/TPACommand.java similarity index 78% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TPACommand.java rename to src/main/java/com/zontreck/commands/teleport/TPACommand.java index 2bb85a4..049e55f 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TPACommand.java +++ b/src/main/java/com/zontreck/commands/teleport/TPACommand.java @@ -1,129 +1,127 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.ariaslib.terminal.Task; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.chat.Clickable; -import dev.zontreck.libzontreck.chat.HoverTip; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.commands.arguments.EntityArgument; -import net.minecraft.network.chat.ClickEvent; -import net.minecraft.network.chat.Component; -import net.minecraft.network.chat.HoverEvent; -import net.minecraft.network.chat.Style; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.network.NetworkHooks; - -public class TPACommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("tpa").executes(c->usage(c.getSource())).then(Commands.argument("player", EntityArgument.player()).executes(c -> tpa(c.getSource(), EntityArgument.getPlayer(c, "player"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int tpa(CommandSourceStack source, ServerPlayer serverPlayer) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "tpa"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - // Send the request to player - if(serverPlayer == null){ - source.sendFailure(ChatHelpers.macro(Messages.PLAYER_NOT_FOUND)); - return 1; - } - - ServerPlayer play = (ServerPlayer)source.getEntity(); - - - if(play.getUUID() == serverPlayer.getUUID()){ - source.sendFailure(ChatHelpers.macro(Messages.NO_TP_TO_SELF)); - return 1; - } - - final TeleportContainer cont = new TeleportContainer(play.getUUID(), serverPlayer.getUUID()); - - for(TeleportContainer cont2 : TeleportRegistry.get()){ - if(cont2.compareTo(cont)==0){ - ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); - return 0; - }else { - if(cont2.FromPlayer == cont.FromPlayer){ - ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); - return 0; - } - } - } - - - ClickEvent ce = Clickable.command("/tpcancel "+cont.TeleportID.toString()); - HoverEvent he = HoverTip.get(ChatColor.DARK_GREEN+"Cancel this teleport request"); - - Style s = Style.EMPTY.withFont(Style.DEFAULT_FONT).withHoverEvent(he).withClickEvent(ce); - - // Send the alerts - ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(ChatColor.BOLD + ChatColor.DARK_GREEN +"TPA Request Sent! ").append(ChatHelpers.macro(ChatColor.BOLD+ChatColor.DARK_GRAY+"["+ChatColor.DARK_RED+"X"+ChatColor.DARK_GRAY+"]").setStyle(s)), serverPlayer.server); - - - ce = Clickable.command("/tpaccept "+cont.TeleportID.toString()); - he = HoverTip.get(ChatColor.DARK_GREEN + "Accept tp request"); - ClickEvent ce2 = Clickable.command("/tpdeny "+ cont.TeleportID); - HoverEvent he2 = HoverTip.get(ChatColor.DARK_RED+"Deny this request"); - s = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce).withHoverEvent(he); - - Style s2 = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce2).withHoverEvent(he2); - - - - Profile p; - try { - p = Profile.get_profile_of(cont.FromPlayer.toString()); - } catch (UserProfileNotYetExistsException e) { - return 1; - } - serverPlayer.playSound(Messages.TPA_SOUND, 1, serverPlayer.getRandom().nextFloat()); - ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro(Messages.TPA, p.name_color+p.nickname). - append(ChatHelpers.macro(Messages.TELEPORT_ACCEPT+" ").setStyle(s)). - append(ChatHelpers.macro(Messages.TELEPORT_DENY).setStyle(s2)), serverPlayer.server); - - TeleportRegistry.get().add(cont); - Thread tx = new Thread(new Task("tpa_expire",true){ - @Override - public void run() - { - try { - Thread.sleep(30 * 1000); - } catch (InterruptedException e) { - e.printStackTrace(); - } - if(!(TeleportRegistry.get().contains(cont)))return; - TeleportRegistry.get().remove(cont); - - ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); - ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); - } - }); - tx.start(); - return 0; - } - - private static int usage(CommandSourceStack source) { - - source.sendSystemMessage(ChatHelpers.macro("/tpa USAGE\n\n "+ChatColor.BOLD + ChatColor.DARK_GRAY+"/tpa "+ChatColor.DARK_RED+"target_player\n")); - return 0; - } -} +package com.zontreck.commands.teleport; + +import com.mojang.brigadier.CommandDispatcher; +import com.zontreck.Messages; +import com.zontreck.events.CommandExecutionEvent; +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.chat.Clickable; +import com.zontreck.libzontreck.chat.HoverTip; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.util.TeleportContainer; +import com.zontreck.util.TeleportRegistry; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.commands.arguments.EntityArgument; +import net.minecraft.network.chat.ClickEvent; +import net.minecraft.network.chat.HoverEvent; +import net.minecraft.network.chat.Style; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; + +public class TPACommand +{ + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("tpa").executes(c->usage(c.getSource())).then(Commands.argument("player", EntityArgument.player()).executes(c -> tpa(c.getSource(), EntityArgument.getPlayer(c, "player"))))); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int tpa(CommandSourceStack source, ServerPlayer serverPlayer) { + + var exec = new CommandExecutionEvent(source.getPlayer(), "tpa"); + if(MinecraftForge.EVENT_BUS.post(exec)) + { + return 0; + } + // Send the request to player + if(serverPlayer == null){ + source.sendFailure(ChatHelpers.macro(Messages.PLAYER_NOT_FOUND)); + return 1; + } + + ServerPlayer play = (ServerPlayer)source.getEntity(); + + + if(play.getUUID() == serverPlayer.getUUID()){ + source.sendFailure(ChatHelpers.macro(Messages.NO_TP_TO_SELF)); + return 1; + } + + final TeleportContainer cont = new TeleportContainer(play.getUUID(), serverPlayer.getUUID()); + + for(TeleportContainer cont2 : TeleportRegistry.get()){ + if(cont2.compareTo(cont)==0){ + ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); + return 0; + }else { + if(cont2.FromPlayer == cont.FromPlayer){ + ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); + return 0; + } + } + } + + + ClickEvent ce = Clickable.command("/tpcancel "+cont.TeleportID.toString()); + HoverEvent he = HoverTip.get(ChatColor.DARK_GREEN+"Cancel this teleport request"); + + Style s = Style.EMPTY.withFont(Style.DEFAULT_FONT).withHoverEvent(he).withClickEvent(ce); + + // Send the alerts + ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(ChatColor.BOLD + ChatColor.DARK_GREEN +"TPA Request Sent! ").append(ChatHelpers.macro(ChatColor.BOLD+ChatColor.DARK_GRAY+"["+ChatColor.DARK_RED+"X"+ChatColor.DARK_GRAY+"]").setStyle(s)), serverPlayer.server); + + + ce = Clickable.command("/tpaccept "+cont.TeleportID.toString()); + he = HoverTip.get(ChatColor.DARK_GREEN + "Accept tp request"); + ClickEvent ce2 = Clickable.command("/tpdeny "+ cont.TeleportID); + HoverEvent he2 = HoverTip.get(ChatColor.DARK_RED+"Deny this request"); + s = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce).withHoverEvent(he); + + Style s2 = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce2).withHoverEvent(he2); + + + + Profile p; + try { + p = Profile.get_profile_of(cont.FromPlayer.toString()); + } catch (UserProfileNotYetExistsException e) { + return 1; + } + serverPlayer.playSound(Messages.TPA_SOUND, 1, serverPlayer.getRandom().nextFloat()); + ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro(Messages.TPA, p.name_color+p.nickname). + append(ChatHelpers.macro(Messages.TELEPORT_ACCEPT+" ").setStyle(s)). + append(ChatHelpers.macro(Messages.TELEPORT_DENY).setStyle(s2)), serverPlayer.server); + + TeleportRegistry.get().add(cont); + Thread tx = new Thread(new Runnable() { + @Override + public void run() + { + try { + Thread.sleep(30 * 1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + if(!(TeleportRegistry.get().contains(cont)))return; + TeleportRegistry.get().remove(cont); + + ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); + ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); + } + }); + tx.start(); + return 0; + } + + private static int usage(CommandSourceStack source) { + + source.sendSystemMessage(ChatHelpers.macro("/tpa USAGE\n\n "+ ChatColor.BOLD + ChatColor.DARK_GRAY+"/tpa "+ChatColor.DARK_RED+"target_player\n")); + return 0; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TPAHereCommand.java b/src/main/java/com/zontreck/commands/teleport/TPAHereCommand.java similarity index 80% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TPAHereCommand.java rename to src/main/java/com/zontreck/commands/teleport/TPAHereCommand.java index c802592..98a8bf0 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TPAHereCommand.java +++ b/src/main/java/com/zontreck/commands/teleport/TPAHereCommand.java @@ -1,124 +1,127 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.ariaslib.terminal.Task; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.chat.Clickable; -import dev.zontreck.libzontreck.chat.HoverTip; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.commands.arguments.EntityArgument; -import net.minecraft.network.chat.*; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.common.MinecraftForge; - -public class TPAHereCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("tpahere").executes(c->usage(c.getSource())).then(Commands.argument("player", EntityArgument.player()).executes(c -> tpa(c.getSource(), EntityArgument.getPlayer(c, "player"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int tpa(CommandSourceStack source, ServerPlayer serverPlayer) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "tpahere"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - // Send the request to player - - ServerPlayer play = (ServerPlayer)source.getEntity(); - if(serverPlayer == null){ - source.sendFailure(ChatHelpers.macro(Messages.PLAYER_NOT_FOUND)); - return 1; - } - if(play.getUUID() == serverPlayer.getUUID()){ - source.sendFailure(ChatHelpers.macro(Messages.NO_TP_TO_SELF)); - return 1; - } - - final TeleportContainer cont = new TeleportContainer(serverPlayer.getUUID(), play.getUUID()); - - for(TeleportContainer cont2 : TeleportRegistry.get()){ - if(cont2.compareTo(cont)==0){ - ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); - return 0; - }else { - if(cont2.ToPlayer.equals(cont.ToPlayer)){ - ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); - return 0; - } - } - } - - - ClickEvent ce = Clickable.command("/tpcancel "+cont.TeleportID.toString()); - HoverEvent he = HoverTip.get(ChatColor.DARK_GREEN+"Cancel this teleport request"); - - // Send the alerts - MutableComponent component = ChatHelpers.macro("!Bold!!Dark_Green!TPA Request Sent! "); - MutableComponent cancelation = ChatHelpers.macro("!Bold!!Dark_Gray![!Dark_Red!X!Dark_Gray!]"); - cancelation.setStyle(cancelation.getStyle().withClickEvent(ce).withHoverEvent(he)); - - component.append(cancelation); - ChatHelpers.broadcastTo(cont.ToPlayer, component, serverPlayer.server); - - Style s; - - ce = Clickable.command("/tpaccept "+cont.TeleportID.toString()); - he = HoverTip.get(ChatColor.DARK_GREEN + "Accept tp request"); - ClickEvent ce2 = Clickable.command("/tpdeny "+ cont.TeleportID); - HoverEvent he2 = HoverTip.get(ChatColor.DARK_RED+"Deny this request"); - s = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce).withHoverEvent(he); - - Style s2 = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce2).withHoverEvent(he2); - - Profile p; - try { - p = Profile.get_profile_of(cont.ToPlayer.toString()); - } catch (UserProfileNotYetExistsException e) { - return 1; - } - serverPlayer.playSound(Messages.TPA_SOUND, 1, serverPlayer.getRandom().nextFloat()); - ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(Messages.TPA_HERE, p.name_color+p.nickname). - append(ChatHelpers.macro(Messages.TELEPORT_ACCEPT+" ").setStyle(s)). - append(ChatHelpers.macro(Messages.TELEPORT_DENY).setStyle(s2)), serverPlayer.server); - - TeleportRegistry.get().add(cont); - - Thread tx = new Thread(new Task("tpahere_expire",true){ - @Override - public void run() - { - try { - Thread.sleep(30 * 1000); - } catch (InterruptedException e) { - e.printStackTrace(); - } - if(!(TeleportRegistry.get().contains(cont)))return; - TeleportRegistry.get().remove(cont); - - ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); - ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); - } - }); - return 0; - } - - private static int usage(CommandSourceStack source) { - source.sendSystemMessage(ChatHelpers.macro("/tpahere USAGE\n\n !Bold!!Dark_Gray!/tpahere !Dark_Red!target_player\n")); - return 0; - } -} +package com.zontreck.commands.teleport; + +import com.mojang.brigadier.CommandDispatcher; +import com.zontreck.Messages; +import com.zontreck.events.CommandExecutionEvent; +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.chat.Clickable; +import com.zontreck.libzontreck.chat.HoverTip; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.util.TeleportContainer; +import com.zontreck.util.TeleportRegistry; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.commands.arguments.EntityArgument; +import net.minecraft.network.chat.ClickEvent; +import net.minecraft.network.chat.HoverEvent; +import net.minecraft.network.chat.MutableComponent; +import net.minecraft.network.chat.Style; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; + +public class TPAHereCommand +{ + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("tpahere").executes(c->usage(c.getSource())).then(Commands.argument("player", EntityArgument.player()).executes(c -> tpa(c.getSource(), EntityArgument.getPlayer(c, "player"))))); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int tpa(CommandSourceStack source, ServerPlayer serverPlayer) { + + var exec = new CommandExecutionEvent(source.getPlayer(), "tpahere"); + if(MinecraftForge.EVENT_BUS.post(exec)) + { + return 0; + } + // Send the request to player + + ServerPlayer play = (ServerPlayer)source.getEntity(); + if(serverPlayer == null){ + source.sendFailure(ChatHelpers.macro(Messages.PLAYER_NOT_FOUND)); + return 1; + } + if(play.getUUID() == serverPlayer.getUUID()){ + source.sendFailure(ChatHelpers.macro(Messages.NO_TP_TO_SELF)); + return 1; + } + + final TeleportContainer cont = new TeleportContainer(serverPlayer.getUUID(), play.getUUID()); + + for(TeleportContainer cont2 : TeleportRegistry.get()){ + if(cont2.compareTo(cont)==0){ + ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); + return 0; + }else { + if(cont2.ToPlayer.equals(cont.ToPlayer)){ + ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro(Messages.NO_MORE_THAN_ONE_TPA), source.getServer()); + return 0; + } + } + } + + + ClickEvent ce = Clickable.command("/tpcancel "+cont.TeleportID.toString()); + HoverEvent he = HoverTip.get(ChatColor.DARK_GREEN+"Cancel this teleport request"); + + // Send the alerts + MutableComponent component = ChatHelpers.macro("!Bold!!Dark_Green!TPA Request Sent! "); + MutableComponent cancelation = ChatHelpers.macro("!Bold!!Dark_Gray![!Dark_Red!X!Dark_Gray!]"); + cancelation.setStyle(cancelation.getStyle().withClickEvent(ce).withHoverEvent(he)); + + component.append(cancelation); + ChatHelpers.broadcastTo(cont.ToPlayer, component, serverPlayer.server); + + Style s; + + ce = Clickable.command("/tpaccept "+cont.TeleportID.toString()); + he = HoverTip.get(ChatColor.DARK_GREEN + "Accept tp request"); + ClickEvent ce2 = Clickable.command("/tpdeny "+ cont.TeleportID); + HoverEvent he2 = HoverTip.get(ChatColor.DARK_RED+"Deny this request"); + s = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce).withHoverEvent(he); + + Style s2 = Style.EMPTY.withFont(Style.DEFAULT_FONT).withClickEvent(ce2).withHoverEvent(he2); + + Profile p; + try { + p = Profile.get_profile_of(cont.ToPlayer.toString()); + } catch (UserProfileNotYetExistsException e) { + return 1; + } + serverPlayer.playSound(Messages.TPA_SOUND, 1, serverPlayer.getRandom().nextFloat()); + ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro(Messages.TPA_HERE, p.name_color+p.nickname). + append(ChatHelpers.macro(Messages.TELEPORT_ACCEPT+" ").setStyle(s)). + append(ChatHelpers.macro(Messages.TELEPORT_DENY).setStyle(s2)), serverPlayer.server); + + TeleportRegistry.get().add(cont); + + Thread tx = new Thread(new Runnable(){ + @Override + public void run() + { + try { + Thread.sleep(30 * 1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + if(!(TeleportRegistry.get().contains(cont)))return; + TeleportRegistry.get().remove(cont); + + ChatHelpers.broadcastTo(cont.ToPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); + ChatHelpers.broadcastTo(cont.FromPlayer, ChatHelpers.macro("!Dark_Red!Teleport request has expired"), cont.Dimension.getServer()); + } + }); + return 0; + } + + private static int usage(CommandSourceStack source) { + source.sendSystemMessage(ChatHelpers.macro("/tpahere USAGE\n\n !Bold!!Dark_Gray!/tpahere !Dark_Red!target_player\n")); + return 0; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TPAcceptCommand.java b/src/main/java/com/zontreck/commands/teleport/TPAcceptCommand.java similarity index 87% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TPAcceptCommand.java rename to src/main/java/com/zontreck/commands/teleport/TPAcceptCommand.java index 803e831..aa5a5bd 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TPAcceptCommand.java +++ b/src/main/java/com/zontreck/commands/teleport/TPAcceptCommand.java @@ -1,71 +1,71 @@ -package dev.zontreck.essentials.commands.teleport; - -import java.util.Iterator; -import java.util.UUID; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.common.MinecraftForge; - -public class TPAcceptCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("tpaccept").then(Commands.argument("TeleportUUID", StringArgumentType.string()).executes(c->doAccept(c.getSource(), StringArgumentType.getString(c, "TeleportUUID"))))); - } - - private static int doAccept(CommandSourceStack source, String TPID) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "tpaccept"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - UUID teleporter = UUID.fromString(TPID); - - ServerPlayer play = (ServerPlayer)source.getEntity(); - Iterator it = TeleportRegistry.get().iterator(); - while(it.hasNext()) - { - TeleportContainer cont = it.next(); - if(cont.TeleportID.equals(teleporter)){ - // Accepting! - - ServerPlayer from = source.getServer().getPlayerList().getPlayer(cont.FromPlayer); - ServerPlayer to = source.getServer().getPlayerList().getPlayer(cont.ToPlayer); - - Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_ACCEPTED); - - ChatHelpers.broadcastTo(cont.FromPlayer, comp, source.getServer()); - ChatHelpers.broadcastTo(cont.ToPlayer, comp, source.getServer()); - - it.remove(); - - - cont.PlayerInst = from; - cont.Position = to.position(); - cont.Rotation = to.getRotationVector(); - cont.Dimension = to.getLevel(); - - TeleportActioner.ApplyTeleportEffect(from); - TeleportActioner.PerformTeleport(cont, false); - return 0; - } - } - - Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_NOT_FOUND); - - ChatHelpers.broadcastTo(play.getUUID(), comp, source.getServer()); - - return 0; - } -} +package com.zontreck.commands.teleport; + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.zontreck.Messages; +import com.zontreck.events.CommandExecutionEvent; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.util.TeleportActioner; +import com.zontreck.util.TeleportContainer; +import com.zontreck.util.TeleportRegistry; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.network.chat.Component; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; + +import java.util.Iterator; +import java.util.UUID; + +public class TPAcceptCommand { + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("tpaccept").then(Commands.argument("TeleportUUID", StringArgumentType.string()).executes(c->doAccept(c.getSource(), StringArgumentType.getString(c, "TeleportUUID"))))); + } + + private static int doAccept(CommandSourceStack source, String TPID) { + + var exec = new CommandExecutionEvent(source.getPlayer(), "tpaccept"); + if(MinecraftForge.EVENT_BUS.post(exec)) + { + return 0; + } + UUID teleporter = UUID.fromString(TPID); + + ServerPlayer play = (ServerPlayer)source.getEntity(); + Iterator it = TeleportRegistry.get().iterator(); + while(it.hasNext()) + { + TeleportContainer cont = it.next(); + if(cont.TeleportID.equals(teleporter)){ + // Accepting! + + ServerPlayer from = source.getServer().getPlayerList().getPlayer(cont.FromPlayer); + ServerPlayer to = source.getServer().getPlayerList().getPlayer(cont.ToPlayer); + + Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_ACCEPTED); + + ChatHelpers.broadcastTo(cont.FromPlayer, comp, source.getServer()); + ChatHelpers.broadcastTo(cont.ToPlayer, comp, source.getServer()); + + it.remove(); + + + cont.PlayerInst = from; + cont.Position = to.position(); + cont.Rotation = to.getRotationVector(); + cont.Dimension = to.getLevel(); + + TeleportActioner.ApplyTeleportEffect(from); + TeleportActioner.PerformTeleport(cont, false); + return 0; + } + } + + Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_NOT_FOUND); + + ChatHelpers.broadcastTo(play.getUUID(), comp, source.getServer()); + + return 0; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TPCancelCommand.java b/src/main/java/com/zontreck/commands/teleport/TPCancelCommand.java similarity index 80% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TPCancelCommand.java rename to src/main/java/com/zontreck/commands/teleport/TPCancelCommand.java index 50a6bdb..f316bfb 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TPCancelCommand.java +++ b/src/main/java/com/zontreck/commands/teleport/TPCancelCommand.java @@ -1,57 +1,57 @@ -package dev.zontreck.essentials.commands.teleport; - -import java.util.Iterator; -import java.util.UUID; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerPlayer; - -public class TPCancelCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("tpcancel").then(Commands.argument("TeleportUUID", StringArgumentType.string()).executes(c->doCancel(c.getSource(), StringArgumentType.getString(c, "TeleportUUID"))))); - - //executes(c -> doCancel(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int doCancel(CommandSourceStack source, String TPID) { - UUID teleporter = UUID.fromString(TPID); - ServerPlayer play = (ServerPlayer)source.getEntity(); - - Iterator it = TeleportRegistry.get().iterator(); - while(it.hasNext()) - { - TeleportContainer cont = it.next(); - if(cont.TeleportID.equals(teleporter)){ - // Canceling! - Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_CANCELLED); - - ChatHelpers.broadcastTo(cont.FromPlayer, comp, source.getServer()); - ChatHelpers.broadcastTo(cont.ToPlayer, comp, source.getServer()); - - it.remove(); - return 0; - } - } - - Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_NOT_FOUND); - - ChatHelpers.broadcastTo(play.getUUID(), comp, source.getServer()); - - return 0; - } -} +package com.zontreck.commands.teleport; + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.zontreck.Messages; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.util.TeleportContainer; +import com.zontreck.util.TeleportRegistry; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.network.chat.Component; +import net.minecraft.server.level.ServerPlayer; + +import java.util.Iterator; +import java.util.UUID; + +public class TPCancelCommand +{ + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("tpcancel").then(Commands.argument("TeleportUUID", StringArgumentType.string()).executes(c->doCancel(c.getSource(), StringArgumentType.getString(c, "TeleportUUID"))))); + + //executes(c -> doCancel(c.getSource()))); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int doCancel(CommandSourceStack source, String TPID) { + UUID teleporter = UUID.fromString(TPID); + ServerPlayer play = (ServerPlayer)source.getEntity(); + + Iterator it = TeleportRegistry.get().iterator(); + while(it.hasNext()) + { + TeleportContainer cont = it.next(); + if(cont.TeleportID.equals(teleporter)){ + // Canceling! + Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_CANCELLED); + + ChatHelpers.broadcastTo(cont.FromPlayer, comp, source.getServer()); + ChatHelpers.broadcastTo(cont.ToPlayer, comp, source.getServer()); + + it.remove(); + return 0; + } + } + + Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_NOT_FOUND); + + ChatHelpers.broadcastTo(play.getUUID(), comp, source.getServer()); + + return 0; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TPDenyCommand.java b/src/main/java/com/zontreck/commands/teleport/TPDenyCommand.java similarity index 80% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TPDenyCommand.java rename to src/main/java/com/zontreck/commands/teleport/TPDenyCommand.java index 1b0665a..cd87dbf 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TPDenyCommand.java +++ b/src/main/java/com/zontreck/commands/teleport/TPDenyCommand.java @@ -1,56 +1,56 @@ -package dev.zontreck.essentials.commands.teleport; - -import java.util.Iterator; -import java.util.UUID; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerPlayer; - -public class TPDenyCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("tpdeny").then(Commands.argument("TeleportUUID", StringArgumentType.string()).executes(c->doCancel(c.getSource(), StringArgumentType.getString(c, "TeleportUUID"))))); - - //executes(c -> doCancel(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int doCancel(CommandSourceStack source, String TPID) { - UUID teleporter = UUID.fromString(TPID); - ServerPlayer play = (ServerPlayer)source.getEntity(); - Iterator it = TeleportRegistry.get().iterator(); - while(it.hasNext()) - { - TeleportContainer cont = it.next(); - if(cont.TeleportID.equals(teleporter)){ - // Canceling! - Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_DENIED); - - ChatHelpers.broadcastTo(cont.FromPlayer, comp, source.getServer()); - ChatHelpers.broadcastTo(cont.ToPlayer, comp, source.getServer()); - - it.remove(); - return 0; - } - } - - Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_NOT_FOUND); - - ChatHelpers.broadcastTo(play.getUUID(), comp, source.getServer()); - - return 0; - } -} +package com.zontreck.commands.teleport; + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.zontreck.Messages; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.util.TeleportContainer; +import com.zontreck.util.TeleportRegistry; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.network.chat.Component; +import net.minecraft.server.level.ServerPlayer; + +import java.util.Iterator; +import java.util.UUID; + +public class TPDenyCommand +{ + public static void register(CommandDispatcher dispatcher) + { + dispatcher.register(Commands.literal("tpdeny").then(Commands.argument("TeleportUUID", StringArgumentType.string()).executes(c->doCancel(c.getSource(), StringArgumentType.getString(c, "TeleportUUID"))))); + + //executes(c -> doCancel(c.getSource()))); + + //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { + //String arg = StringArgumentType.getString(command, "nickname"); + //return setHome(command.getSource(), arg); + //})); + } + + private static int doCancel(CommandSourceStack source, String TPID) { + UUID teleporter = UUID.fromString(TPID); + ServerPlayer play = (ServerPlayer)source.getEntity(); + Iterator it = TeleportRegistry.get().iterator(); + while(it.hasNext()) + { + TeleportContainer cont = it.next(); + if(cont.TeleportID.equals(teleporter)){ + // Canceling! + Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_DENIED); + + ChatHelpers.broadcastTo(cont.FromPlayer, comp, source.getServer()); + ChatHelpers.broadcastTo(cont.ToPlayer, comp, source.getServer()); + + it.remove(); + return 0; + } + } + + Component comp = ChatHelpers.macro(Messages.TELEPORT_REQUEST_NOT_FOUND); + + ChatHelpers.broadcastTo(play.getUUID(), comp, source.getServer()); + + return 0; + } +} diff --git a/src/main/java/dev/zontreck/essentials/configs/client/AEClientConfig.java b/src/main/java/com/zontreck/configs/client/AEClientConfig.java similarity index 90% rename from src/main/java/dev/zontreck/essentials/configs/client/AEClientConfig.java rename to src/main/java/com/zontreck/configs/client/AEClientConfig.java index 5777aa7..fa47bac 100644 --- a/src/main/java/dev/zontreck/essentials/configs/client/AEClientConfig.java +++ b/src/main/java/com/zontreck/configs/client/AEClientConfig.java @@ -1,7 +1,7 @@ -package dev.zontreck.essentials.configs.client; +package com.zontreck.configs.client; -import dev.zontreck.essentials.util.EssentialsDatastore; -import dev.zontreck.libzontreck.util.SNbtIo; +import com.zontreck.libzontreck.util.SNbtIo; +import com.zontreck.util.EssentialsDatastore; import net.minecraft.nbt.CompoundTag; import java.nio.file.Path; @@ -20,12 +20,13 @@ public class AEClientConfig AEClientConfig config = new AEClientConfig(); config.EnableHearts = tag.getBoolean(TAG_HEARTS); + return config; } public static void loadFromFile() { - Path serverConfig = EssentialsDatastore.of("client.snbt"); + Path serverConfig = EssentialsDatastore.of("client.snbt", false); if(serverConfig.toFile().exists()) { @@ -47,8 +48,6 @@ public class AEClientConfig { EnableHearts = true; - - save(); } diff --git a/src/main/java/com/zontreck/configs/client/sections/Messages.java b/src/main/java/com/zontreck/configs/client/sections/Messages.java new file mode 100644 index 0000000..2b55b62 --- /dev/null +++ b/src/main/java/com/zontreck/configs/client/sections/Messages.java @@ -0,0 +1,6 @@ +package com.zontreck.configs.client.sections; + +public class Messages +{ + +} diff --git a/src/main/java/com/zontreck/configs/server/AEServerConfig.java b/src/main/java/com/zontreck/configs/server/AEServerConfig.java new file mode 100644 index 0000000..4fd8837 --- /dev/null +++ b/src/main/java/com/zontreck/configs/server/AEServerConfig.java @@ -0,0 +1,148 @@ +package com.zontreck.configs.server; + +import com.zontreck.AriasEssentials; +import com.zontreck.ariaslib.util.Lists; +import com.zontreck.configs.server.sections.Bottles; +import com.zontreck.configs.server.sections.Drops; +import com.zontreck.configs.server.sections.Messages; +import com.zontreck.configs.server.sections.Teleportation; +import com.zontreck.libzontreck.util.SNbtIo; +import com.zontreck.util.EssentialsDatastore; +import net.minecraft.nbt.*; + +import java.nio.file.Path; +import java.util.HashMap; +import java.util.Map; + +public class AEServerConfig +{ + private static AEServerConfig inst; + public Bottles bottles; + public Teleportation teleport; + public Messages messages; + public Drops drops; + public boolean enable_debug = false; + + + + public static AEServerConfig deserialize(CompoundTag tag) + { + AEServerConfig config = new AEServerConfig(); + try { + AriasEssentials.LOGGER.info("Loading Aria's Essentials configuration for - Server"); + if(tag.contains(Bottles.TAG_NAME)) + { + config.bottles = Bottles.deserialize(tag.getCompound(Bottles.TAG_NAME)); + } else config.resetBottles(); + + + if(tag.contains(Teleportation.TAG_NAME)) + config.teleport = Teleportation.deserialize(tag.getCompound(Teleportation.TAG_NAME)); + else { + config.resetTeleport(); + } + + if(tag.contains(Messages.TAG_NAME)) + config.messages = Messages.deserialize(tag.getCompound(Messages.TAG_NAME)); + else config.messages = new Messages(); + + if(tag.contains("use_debug")) + config.enable_debug = tag.getBoolean("use_debug"); + else config.enable_debug=false; + + if(tag.contains(Drops.TAG_NAME)) + config.drops = Drops.load(tag.getCompound(Drops.TAG_NAME)); + else { + config.resetDrops(); + } + + AriasEssentials.LOGGER.info("Aria's Essentials Server Configuration Loaded"); + } catch(Exception e){ + e.printStackTrace(); + } + + + return config; + } + + public static void loadFromFile() + { + Path serverConfig = EssentialsDatastore.of("server.snbt",false); + if(serverConfig.toFile().exists()) + { + inst = deserialize(SNbtIo.loadSnbt(serverConfig)); + + save(); // incase of updates + }else { + initNewConfig(); + } + + + } + + private static void initNewConfig() + { + inst = new AEServerConfig(); + inst.resetBottles(); // also saves + inst.resetTeleport(); + inst.resetDrops(); + inst.messages = new Messages(); + inst.enable_debug=false; + + save(); + } + + private void resetBottles() + { + bottles = new Bottles(); + } + + private void resetTeleport() { + + teleport = new Teleportation(); + teleport.Effects = Lists.of( + "minecraft:darkness", + "minecraft:levitation", + "minecraft:slow_falling", + "minecraft:hunger" + ); + teleport.Blacklist = Lists.of( + "dimdoors:dungeon_pockets", + "dimdoors:limbo", + "dimdoors:personal_pockets", + "dimdoors:public_pockets", + "witherstormmod:bowels" + ); + } + + private void resetDrops() { + drops = new Drops(); + } + + public static void save() + { + Path serverConfig = EssentialsDatastore.of("server.snbt", false); + + CompoundTag tag = inst.serialize(); + SNbtIo.writeSnbt(serverConfig, tag); + } + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.put(Bottles.TAG_NAME, bottles.serialize()); + tag.put(Teleportation.TAG_NAME, teleport.serialize()); + tag.put(Messages.TAG_NAME, messages.serialize()); + tag.putBoolean("use_debug", enable_debug); + tag.put(Drops.TAG_NAME, drops.save()); + + + + return tag; + } + + public static AEServerConfig getInstance() + { + return inst; + } +} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Bottles.java b/src/main/java/com/zontreck/configs/server/sections/Bottles.java similarity index 87% rename from src/main/java/dev/zontreck/essentials/configs/server/sections/Bottles.java rename to src/main/java/com/zontreck/configs/server/sections/Bottles.java index cf78937..e508083 100644 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Bottles.java +++ b/src/main/java/com/zontreck/configs/server/sections/Bottles.java @@ -1,4 +1,4 @@ -package dev.zontreck.essentials.configs.server.sections; +package com.zontreck.configs.server.sections; import net.minecraft.nbt.CompoundTag; @@ -10,6 +10,8 @@ public class Bottles { public static final String TAG_MAX_TIME_RATE = "maxTimeRate"; public static final String TAG_STORED_TIME = "maxTime"; + public static final String TAG_MESSAGE_EXPIRED_BOTTLE = "expireMsg"; + public static final String TAG_MESSAGE_STORED_TIME = "msg_storedTime"; public static final String TAG_MESSAGE_ACCUMULATED_TIME = "msg_accumulatedTime"; public static final String TAG_TOTAL_USES = "msg_totalUses"; @@ -25,7 +27,7 @@ public class Bottles { public String storedTimeStr = "!Dark_Green!Stored Time: [0]"; public String accumulatedTimeStr = "!Gray!Total Accumulated Time: [0]"; public String totalUses = "!Dark_Red!Total available uses: [0]"; - + public String expiredBottle = "!Dark_Green!This bottle is [0][1]"; public CompoundTag serialize() @@ -39,6 +41,7 @@ public class Bottles { tag.putString(TAG_MESSAGE_ACCUMULATED_TIME, accumulatedTimeStr); tag.putString(TAG_TOTAL_USES, totalUses); tag.putInt(TAG_STORED_TIME, maxTime); + tag.putString(TAG_MESSAGE_EXPIRED_BOTTLE, expiredBottle); return tag; @@ -73,6 +76,9 @@ public class Bottles { if(tag.contains(TAG_TOTAL_USES)) bottles.totalUses = tag.getString(TAG_TOTAL_USES); + if(tag.contains(TAG_MESSAGE_EXPIRED_BOTTLE)) + bottles.expiredBottle = tag.getString(TAG_MESSAGE_EXPIRED_BOTTLE); + diff --git a/src/main/java/com/zontreck/configs/server/sections/Drops.java b/src/main/java/com/zontreck/configs/server/sections/Drops.java new file mode 100644 index 0000000..f8e1a71 --- /dev/null +++ b/src/main/java/com/zontreck/configs/server/sections/Drops.java @@ -0,0 +1,44 @@ +package com.zontreck.configs.server.sections; + + +import net.minecraft.nbt.CompoundTag; + +public class Drops +{ + public static final String TAG_NAME = "drops"; + public static final String TAG_PLAYER_HEAD_DROPS = "enablePlayerHeadDrops"; + public static final String TAG_SPAWN_EGG_CHANCE = "mobEggingChance"; + public static final String TAG_PLAYER_HEAD_CHANCE = "playerHeadChance"; + + public boolean enablePlayerHeadChance = true; + public int mobEggingChance = 5; + public int playerHeadChance=10; + + + public CompoundTag save() + { + CompoundTag tag = new CompoundTag(); + tag.putBoolean(TAG_PLAYER_HEAD_DROPS, enablePlayerHeadChance); + tag.putFloat(TAG_SPAWN_EGG_CHANCE, mobEggingChance); + tag.putFloat(TAG_PLAYER_HEAD_CHANCE, playerHeadChance); + + return tag; + } + + public static Drops load(CompoundTag tag) + { + Drops drops = new Drops(); + + if(tag.contains(TAG_PLAYER_HEAD_DROPS)) + drops.enablePlayerHeadChance = tag.getBoolean(TAG_PLAYER_HEAD_DROPS); + + if(tag.contains(TAG_SPAWN_EGG_CHANCE)) + drops.mobEggingChance = tag.getInt(TAG_SPAWN_EGG_CHANCE); + + if(tag.contains(TAG_PLAYER_HEAD_CHANCE)) + drops.playerHeadChance = tag.getInt(TAG_PLAYER_HEAD_CHANCE); + + return drops; + } +} + diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Messages.java b/src/main/java/com/zontreck/configs/server/sections/Messages.java similarity index 92% rename from src/main/java/dev/zontreck/essentials/configs/server/sections/Messages.java rename to src/main/java/com/zontreck/configs/server/sections/Messages.java index 5c6dea0..87bb0e8 100644 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Messages.java +++ b/src/main/java/com/zontreck/configs/server/sections/Messages.java @@ -1,4 +1,5 @@ -package dev.zontreck.essentials.configs.server.sections; +package com.zontreck.configs.server.sections; + import net.minecraft.nbt.CompoundTag; @@ -26,3 +27,4 @@ public class Messages return tag; } } + diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Teleportation.java b/src/main/java/com/zontreck/configs/server/sections/Teleportation.java similarity index 95% rename from src/main/java/dev/zontreck/essentials/configs/server/sections/Teleportation.java rename to src/main/java/com/zontreck/configs/server/sections/Teleportation.java index b98f5b5..f396bfa 100644 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Teleportation.java +++ b/src/main/java/com/zontreck/configs/server/sections/Teleportation.java @@ -1,4 +1,4 @@ -package dev.zontreck.essentials.configs.server.sections; +package com.zontreck.configs.server.sections; import net.minecraft.nbt.CompoundTag; import net.minecraft.nbt.ListTag; @@ -8,8 +8,7 @@ import net.minecraft.nbt.Tag; import java.util.ArrayList; import java.util.List; -public class Teleportation -{ +public class Teleportation { public static final String TAG_NAME = "teleport"; public static final String TAG_EFFECTS = "effects"; public static final String TAG_BLACKLIST = "blacklist"; diff --git a/src/main/java/com/zontreck/effects/FlightEffect.java b/src/main/java/com/zontreck/effects/FlightEffect.java new file mode 100644 index 0000000..07ffba1 --- /dev/null +++ b/src/main/java/com/zontreck/effects/FlightEffect.java @@ -0,0 +1,84 @@ +package com.zontreck.effects; + + +import com.zontreck.Messages; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.effect.MobEffect; +import net.minecraft.world.effect.MobEffectCategory; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.ai.attributes.AttributeMap; +import net.minecraft.world.entity.player.Player; + +public class FlightEffect extends MobEffect { + int lastDuration = -1; + ServerPlayer myPlayer; + protected FlightEffect(MobEffectCategory pCategory, int pColor) { + super(pCategory, pColor); + } + + @Override + public boolean isDurationEffectTick(int pDuration, int pAmplifier) { + lastDuration=pDuration; + + if(myPlayer!=null) { + if(myPlayer.getAbilities().mayfly == false) { + myPlayer.getAbilities().mayfly=true; + myPlayer.onUpdateAbilities(); + } + } + + //OTEMod.LOGGER.info("Effect duration: " + lastDuration); + return pDuration > 0; + } + + @Override + public boolean isBeneficial() { + return true; + } + + @Override + public void addAttributeModifiers(LivingEntity entity, AttributeMap map, int i) { + super.addAttributeModifiers(entity, map, i); + + if(entity instanceof ServerPlayer player) + { + if(player.getAbilities().mayfly==false) + { + myPlayer=player; + player.getAbilities().mayfly=true; + player.onUpdateAbilities(); + + ChatHelpers.broadcastTo(player, ChatHelpers.macro(Messages.FLIGHT_GIVEN), player.server); + } + } + } + + private void removeFlightModifier(LivingEntity entity) + { + if(lastDuration == -1) + { + return; + } + if ( entity instanceof Player player ) + { + if(ServerUtilities.isServer() && lastDuration < (5*20)) + { + ServerPlayer serverPlayer = (ServerPlayer) player; + serverPlayer.getAbilities().mayfly = false; + serverPlayer.getAbilities().flying = false; + + serverPlayer.onUpdateAbilities(); + + ChatHelpers.broadcastTo(serverPlayer, ChatHelpers.macro(Messages.FLIGHT_REMOVED), serverPlayer.server); + } + } + } + + @Override + public void removeAttributeModifiers(LivingEntity entity, AttributeMap p_19470_, int p_19471_) { + super.removeAttributeModifiers(entity, p_19470_, p_19471_); + removeFlightModifier(entity); + } +} diff --git a/src/main/java/com/zontreck/effects/ModEffects.java b/src/main/java/com/zontreck/effects/ModEffects.java new file mode 100644 index 0000000..85b5194 --- /dev/null +++ b/src/main/java/com/zontreck/effects/ModEffects.java @@ -0,0 +1,25 @@ +package com.zontreck.effects; + + +import com.zontreck.AriasEssentials; +import net.minecraft.world.effect.MobEffect; +import net.minecraft.world.effect.MobEffectCategory; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class ModEffects +{ + public static final DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.MOB_EFFECTS, AriasEssentials.MOD_ID); + + public static final RegistryObject FLIGHT = REGISTRY.register("flight", ()->new FlightEffect(MobEffectCategory.BENEFICIAL, 0xFF0000FF)); + + + + public static void register(IEventBus bus) + { + REGISTRY.register(bus); + } +} + diff --git a/src/main/java/com/zontreck/effects/ModPotions.java b/src/main/java/com/zontreck/effects/ModPotions.java new file mode 100644 index 0000000..d7258da --- /dev/null +++ b/src/main/java/com/zontreck/effects/ModPotions.java @@ -0,0 +1,28 @@ +package com.zontreck.effects; + + +import com.zontreck.AriasEssentials; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraft.world.item.alchemy.Potion; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class ModPotions { + public static final DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.POTIONS, AriasEssentials.MOD_ID); + + + public static final RegistryObject AWKWARD_FLIGHT = REGISTRY.register("flight_awkward", ()->new Potion(new MobEffectInstance(ModEffects.FLIGHT.get(), 30*20, 1))); + + public static final RegistryObject MUNDANE_FLIGHT = REGISTRY.register("flight_basic", ()->new Potion(new MobEffectInstance(ModEffects.FLIGHT.get(), 60*20, 1))); + + public static final RegistryObject FLIGHT = REGISTRY.register("flight", ()->new Potion(new MobEffectInstance(ModEffects.FLIGHT.get(), 360*20, 1))); + + + public static void register(IEventBus bus) + { + REGISTRY.register(bus); + } +} + diff --git a/src/main/java/com/zontreck/enchantments/ConsumptionMending.java b/src/main/java/com/zontreck/enchantments/ConsumptionMending.java new file mode 100644 index 0000000..7bea2c0 --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/ConsumptionMending.java @@ -0,0 +1,160 @@ +package com.zontreck.enchantments; + + +import com.zontreck.libzontreck.util.ItemUtils; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +public class ConsumptionMending extends Enchantment +{ + protected ConsumptionMending(EquipmentSlot... slots) { + super(Rarity.RARE, EnchantmentCategory.BREAKABLE, slots); + } + + @Override + public int getMaxLevel() { + return 1; + } + + @Override + public boolean isTradeable() { + return true; + } + + @Override + public boolean isTreasureOnly() { + return false; + } + + @Override + public boolean isCurse() { + return true; + } + + @Override + public int getMinCost(int pLevel) { + return 25 + (pLevel-1); + } + + @Override + public int getMaxCost(int pLevel) { + return pLevel * 23; + } + + private static List append(ServerPlayer player, List items) + { + List enchanted = new ArrayList<>(); + + for(ItemStack stack : player.getInventory().items) + { + if(ItemUtils.getEnchantmentLevel(ModEnchantments.CONSUMPTION_MENDING.get(), stack) > 0) + { + enchanted.add(stack); + } + } + + return enchanted; + } + + public static void onEntityTick(ServerPlayer player) + { + // Check what items have this enchantment + // If any, check for like-items that lack the enchant. + + List enchanted = ItemUtils.getPlayerInventory(player); + List procList = new ArrayList<>(enchanted); + + for(ItemStack stack : enchanted) + { + int dmgValue = stack.getDamageValue(); + if(ItemUtils.getEnchantmentLevel(ModEnchantments.CONSUMPTION_MENDING.get(), stack) == 0 || dmgValue == 0) continue; // Skip, because this is a ineligible item + + for(ItemStack item : procList) + { + // Is this a like item, and does it have the enchant? + boolean eligible = false; + if(!(ItemUtils.getEnchantmentLevel(ModEnchantments.CONSUMPTION_MENDING.get(), item)>0)) + { + eligible=true; + if(!item.isDamageableItem()) + { + eligible=false; + } + } + + if(stack.getDamageValue()==0) + { + eligible=false; + } + + if(stack.sameItem(item)) { + eligible = false; + } + + if(eligible) + { + // Let's eat + int iDamage = stack.getDamageValue(); + int iMax = stack.getMaxDamage(); + + int iNeeds = iDamage * 2; + + // The stack we are inspecting: + int nDamage = item.getDamageValue(); + int nMax = item.getMaxDamage(); + + int iRemain = nMax - nDamage; + + if(iRemain == iNeeds) + { + nDamage = nMax; + iDamage=0; + } else { + if(iRemain > iNeeds) + { + iDamage -= iNeeds; + nDamage += iNeeds; + } else { + iDamage -= iRemain; + nDamage = nMax; + } + } + + if(nDamage == nMax){ + // Check for curses on the item + if(item.isEnchanted()) + { + Map enchantments = ItemUtils.getEnchantments(item); + for(Map.Entry entry : enchantments.entrySet()) + { + Enchantment id = entry.getKey(); + int dice = player.getRandom().nextInt(0,20); + + if(id.isCurse() && ((dice >= 13) && (dice <= 18))) + { + stack.enchant(id, entry.getValue()); + player.getLevel().playSound(null, player.getOnPos(), SoundEvents.ANVIL_USE, SoundSource.NEUTRAL,1, player.getRandom().nextFloat()); + } + } + } + + item.shrink(1); + player.getLevel().playSound(null, player.getOnPos(), SoundEvents.PLAYER_BURP, SoundSource.NEUTRAL,1, player.getRandom().nextFloat()); + } + else item.setDamageValue(nDamage); + + stack.setDamageValue(iDamage); + } + } + } + } +} diff --git a/src/main/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java b/src/main/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java new file mode 100644 index 0000000..e0e992a --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/DamageIncreaseEnchantment.java @@ -0,0 +1,55 @@ +package com.zontreck.enchantments; + +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.entity.MobType; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; +import net.minecraft.world.item.enchantment.Enchantments; + +public class DamageIncreaseEnchantment extends Enchantment +{ + protected DamageIncreaseEnchantment(Rarity arg, EnchantmentCategory arg2, EquipmentSlot[] args) { + super(arg, arg2, args); + } + + @Override + public boolean isCurse() { + return false; + } + + @Override + public boolean isAllowedOnBooks() { + return true; + } + + @Override + public boolean isTradeable() { + return true; + } + + @Override + public int getMaxLevel() { + return 6; + } + + @Override + public int getMinLevel() { + return 1; + } + + @Override + public boolean isDiscoverable() { + return true; + } + + @Override + public boolean isTreasureOnly() { + return false; + } + + @Override + public float getDamageBonus(int level, MobType mobType, ItemStack enchantedItem) { + return (float) Math.pow(0.5, level); + } +} diff --git a/src/main/java/com/zontreck/enchantments/EnchantmentEvents.java b/src/main/java/com/zontreck/enchantments/EnchantmentEvents.java new file mode 100644 index 0000000..f9d4d1b --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/EnchantmentEvents.java @@ -0,0 +1,56 @@ +package com.zontreck.enchantments; + + +import com.zontreck.AriasEssentials; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.event.TickEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.LogicalSide; +import net.minecraftforge.fml.common.Mod; + +import java.util.HashMap; +import java.util.Map; + +@Mod.EventBusSubscriber +public class EnchantmentEvents +{ + static Map ticks = new HashMap<>(); + + @SubscribeEvent + public static void handleEnchantmentTicks(TickEvent.PlayerTickEvent event) + { + if(event.side == LogicalSide.CLIENT) return; + + if(event.phase == TickEvent.Phase.END) + { + if(event.player instanceof ServerPlayer sp) + { + boolean cont = false; + + if(ticks.containsKey(sp.getStringUUID())){ + if(ticks.get(sp.getStringUUID()) > 150) { + ticks.put(sp.getStringUUID(), 0); + cont=true; + } else cont=false; + } else { + // Insert + ticks.put(sp.getStringUUID(),0); + cont=false; + } + + if(!cont) { + ticks.put(sp.getStringUUID(), ticks.get(sp.getStringUUID())+1); + return; + } + + //AriasEssentials.LOGGER.info("ENCHANT TICK - Server Player"); + + FlightEnchantment.runEntityTick(sp); + ConsumptionMending.onEntityTick(sp); + VampiricMending.onTick(sp); + NightVisionEnchantment.runEntityTick(sp); + WaterBreathingEnchantment.runEntityTick(sp); + } + } + } +} diff --git a/src/main/java/com/zontreck/enchantments/FlightEnchantment.java b/src/main/java/com/zontreck/enchantments/FlightEnchantment.java new file mode 100644 index 0000000..649909f --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/FlightEnchantment.java @@ -0,0 +1,96 @@ +package com.zontreck.enchantments; + + +import com.zontreck.AriasEssentials; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.effects.ModEffects; +import com.zontreck.libzontreck.util.ItemUtils; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; + +public class FlightEnchantment extends Enchantment +{ + + public FlightEnchantment(EquipmentSlot... slots) + { + super(Rarity.VERY_RARE, EnchantmentCategory.ARMOR_FEET, slots); + } + + @Override + public int getMaxLevel() + { + return 1; + } + + @Override + public int getMinCost(int level) + { + return 28 + (level - 1) * 15; + } + + @Override + public int getMaxCost(int level) + { + return this.getMinCost(level) + 15; + } + + @Override + public boolean isTreasureOnly(){ + return true; + } + @Override + public boolean isTradeable() + { + return true; + } + + // Not a bug. Flight is meant to be a permanent upgrade to a item. It is considered a curse due to unstable behavior. Flight will eat up durability and forge energy + // Flight should NOT be able to be removed via the grindstone + @Override + public boolean isCurse() + { + return true; + } + + + public static void runEntityTick(ServerPlayer sp) + { + if(ServerUtilities.isClient()) return; + + + if(AEServerConfig.getInstance().enable_debug) + { + AriasEssentials.LOGGER.info("> Flight Enchantment Tick <"); + } + + ItemStack feet = sp.getItemBySlot(EquipmentSlot.FEET); + + boolean hasFlight = false; + + if(ItemUtils.getEnchantmentLevel(ModEnchantments.FLIGHT_ENCHANTMENT.get(), feet)>0)hasFlight=true; + + if(hasFlight) + { + MobEffectInstance inst = new MobEffectInstance(ModEffects.FLIGHT.get(), 60*20, 0, false, false, true); + MobEffectInstance existing = sp.getEffect(ModEffects.FLIGHT.get()); + + if(existing != null) + { + if(existing.getDuration() <= (30 * 20)) + { + sp.addEffect(inst); + return; + }else return; + } + + sp.addEffect(inst); + } + + } + +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/enchantments/MobEggEnchantment.java b/src/main/java/com/zontreck/enchantments/MobEggEnchantment.java new file mode 100644 index 0000000..66f8141 --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/MobEggEnchantment.java @@ -0,0 +1,88 @@ +package com.zontreck.enchantments; + + +import com.zontreck.AriasEssentials; +import com.zontreck.configs.server.AEServerConfig; +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; + +import java.util.Random; + +public class MobEggEnchantment extends Enchantment +{ + public static final String TAG_BIAS = "mob_egging_bias"; + + public MobEggEnchantment() + { + super(Rarity.VERY_RARE, EnchantmentCategory.WEAPON, new EquipmentSlot[] {EquipmentSlot.MAINHAND}); + } + + @Override + public int getMaxLevel() + { + return 6; + } + + @Override + public int getMinCost(int level) + { + return 28 + (level - 1) * 15; + } + + @Override + public int getMaxCost(int level) + { + return this.getMinCost(level) + 15; + } + + + @Override + public boolean canApplyAtEnchantingTable(ItemStack stack) + { + return super.canApplyAtEnchantingTable(stack); + } + + @Override + public boolean isTreasureOnly(){ + return false; + } + @Override + public boolean isTradeable() + { + return true; + } + + @Override + public boolean isDiscoverable() + { + return false; + } + + public static boolean givesEgg(int level, int bias) + { + int CHANCE = AEServerConfig.getInstance().drops.mobEggingChance; + + CHANCE += level; + CHANCE += bias; + + if(AEServerConfig.getInstance().enable_debug) + { + AriasEssentials.LOGGER.info("Spawn Egg Chance (" + CHANCE + ")"); + } + return rollChance(CHANCE); + } + + public static boolean rollChance(int percent) + { + Random rng = new Random(); + int test = rng.nextInt(100) + 1 + (100 - percent); + if(AEServerConfig.getInstance().enable_debug) + { + AriasEssentials.LOGGER.info("Spawn Egg Dice Roll (" + test + " / " + percent + ")"); + } + + return test <= percent; + } +} diff --git a/src/main/java/com/zontreck/enchantments/ModDamageSources.java b/src/main/java/com/zontreck/enchantments/ModDamageSources.java new file mode 100644 index 0000000..524a8af --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/ModDamageSources.java @@ -0,0 +1,8 @@ +package com.zontreck.enchantments; + +import net.minecraft.world.damagesource.DamageSource; + +public class ModDamageSources +{ + public static final DamageSource VAMPIRIC_MENDING = new DamageSource("vampiric_mend"); +} diff --git a/src/main/java/com/zontreck/enchantments/ModEnchantments.java b/src/main/java/com/zontreck/enchantments/ModEnchantments.java new file mode 100644 index 0000000..d456858 --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/ModEnchantments.java @@ -0,0 +1,38 @@ +package com.zontreck.enchantments; + +import com.zontreck.AriasEssentials; +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class ModEnchantments { + + protected static final EquipmentSlot[] ARMOR_SLOTS = new EquipmentSlot[]{EquipmentSlot.HEAD, EquipmentSlot.CHEST, EquipmentSlot.LEGS, EquipmentSlot.FEET}; + public static final DeferredRegister REGISTERS = DeferredRegister.create(ForgeRegistries.ENCHANTMENTS, AriasEssentials.MOD_ID); + + public static final RegistryObject MOB_EGGING_ENCHANTMENT = REGISTERS.register("mob_egging", ()->new MobEggEnchantment()); + + public static final RegistryObject FLIGHT_ENCHANTMENT = REGISTERS.register("player_flight", ()->new FlightEnchantment(EquipmentSlot.FEET)); + + + public static final RegistryObject CONSUMPTION_MENDING = REGISTERS.register("consumption_mending", ()->new ConsumptionMending(EquipmentSlot.HEAD, EquipmentSlot.CHEST, EquipmentSlot.FEET, EquipmentSlot.LEGS, EquipmentSlot.MAINHAND, EquipmentSlot.OFFHAND)); + + + public static final RegistryObject NIGHT_VISION_ENCHANT = REGISTERS.register("night_vision", ()->new NightVisionEnchantment(EquipmentSlot.HEAD)); + + public static final RegistryObject WATER_BREATHING_ENCHANT = REGISTERS.register("water_breathing", ()->new WaterBreathingEnchantment(EquipmentSlot.HEAD)); + + public static final RegistryObject WIP_LEVEL_FIELD = REGISTERS.register("extra_strength", ()->new DamageIncreaseEnchantment(Enchantment.Rarity.UNCOMMON, EnchantmentCategory.WEAPON, new EquipmentSlot[] {EquipmentSlot.MAINHAND})); + + public static final RegistryObject VAMPIRIC_MENDING = REGISTERS.register("vampiric_mend", ()-> new VampiricMending(EquipmentSlot.HEAD, EquipmentSlot.CHEST, EquipmentSlot.FEET, EquipmentSlot.LEGS, EquipmentSlot.MAINHAND, EquipmentSlot.OFFHAND)); + + + + public static void register(IEventBus bus){ + REGISTERS.register(bus); + } +} diff --git a/src/main/java/com/zontreck/enchantments/NightVisionEnchantment.java b/src/main/java/com/zontreck/enchantments/NightVisionEnchantment.java new file mode 100644 index 0000000..0db172b --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/NightVisionEnchantment.java @@ -0,0 +1,86 @@ +package com.zontreck.enchantments; + + +import com.zontreck.AriasEssentials; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.libzontreck.util.ItemUtils; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraft.world.effect.MobEffects; +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; + +public class NightVisionEnchantment extends Enchantment +{ + + public NightVisionEnchantment(EquipmentSlot... slots) + { + super(Rarity.VERY_RARE, EnchantmentCategory.ARMOR_HEAD, slots); + } + + @Override + public int getMaxLevel() + { + return 1; + } + + @Override + public boolean isTreasureOnly(){ + return true; + } + @Override + public boolean isTradeable() + { + return true; + } + + // Not a bug. Flight is meant to be a permanent upgrade to a item. It is considered a curse due to unstable behavior. Flight will eat up durability and forge energy + // Flight should NOT be able to be removed via the grindstone + @Override + public boolean isCurse() + { + return false; + } + + public static void runEntityTick(ServerPlayer sp) + { + if(ServerUtilities.isClient()) return; + + + if(AEServerConfig.getInstance().enable_debug) + { + AriasEssentials.LOGGER.info("> NVision Enchantment Tick <"); + } + + + ItemStack feet = sp.getItemBySlot(EquipmentSlot.HEAD); + + boolean hasNV = false; + + if(ItemUtils.getEnchantmentLevel(ModEnchantments.NIGHT_VISION_ENCHANT.get(), feet)>0)hasNV=true; + + if(hasNV) + { + MobEffectInstance inst = new MobEffectInstance(MobEffects.NIGHT_VISION, 60*20, 4, false, false, true); + + MobEffectInstance existing = sp.getEffect(MobEffects.NIGHT_VISION); + if(existing != null) + { + if(existing.getDuration() <= (30*20)) + { + sp.addEffect(inst); + return; + }else return; + } + + sp.addEffect(inst); + } + + + } + +} + diff --git a/src/main/java/com/zontreck/enchantments/VampiricMending.java b/src/main/java/com/zontreck/enchantments/VampiricMending.java new file mode 100644 index 0000000..565d01c --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/VampiricMending.java @@ -0,0 +1,107 @@ +package com.zontreck.enchantments; + +import com.zontreck.Messages; +import com.zontreck.libzontreck.chat.HoverTip; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.util.ItemUtils; +import net.minecraft.network.chat.Style; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.damagesource.DamageSource; +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; +import net.minecraftforge.server.ServerLifecycleHooks; + +import java.util.ArrayList; +import java.util.List; + +public class VampiricMending extends Enchantment +{ + protected VampiricMending(EquipmentSlot... args) { + super(Rarity.VERY_RARE, EnchantmentCategory.BREAKABLE, args); + } + + @Override + public int getMaxLevel() { + return 6; + } + + @Override + public boolean isTreasureOnly() { + return false; + } + + @Override + public boolean isTradeable() { + return true; + } + + @Override + public boolean isDiscoverable() { + return true; + } + + @Override + public boolean isCurse() { + return true; + } + + @Override + public boolean isAllowedOnBooks() { + return true; + } + + public static void onTick(ServerPlayer player) { + List lst1 = ItemUtils.getPlayerInventory(player); + + for(ItemStack stack : lst1) { + if(!stack.isDamageableItem()) { + continue; // Not damageable, no way it would have the enchant + } + + if(stack.getDamageValue() == 0) continue; + + if(ItemUtils.getEnchantmentLevel(ModEnchantments.VAMPIRIC_MENDING.get(), stack) == 0) { + continue; + } + + // We can proceed + int lvl = ItemUtils.getEnchantmentLevel(ModEnchantments.VAMPIRIC_MENDING.get(), stack); + + // Get the multiplier for number of hearts to drink up + float base = 1.0f; // player has 20 hearts / 2 = 10 full hearts + float numOfHeartsToTake = base*lvl; + float playerHealth = player.getHealth(); + + int cLvl = 1; + // Calculate the amount needed up to max per enchant level + while(cLvl <= lvl) { + numOfHeartsToTake = base*cLvl; + + if(lvl == cLvl) break; + if(stack.getDamageValue() <= (50 * cLvl)) break; + + cLvl++; + } + + // Get corrected number of hearts + float numToTake = numOfHeartsToTake; + if(playerHealth > numToTake) { + // we can take that many hearts + player.hurt(ModDamageSources.VAMPIRIC_MENDING, numToTake); + } else { + numToTake = player.getHealth(); + player.hurt(ModDamageSources.VAMPIRIC_MENDING, numToTake); + + + ChatHelpers.broadcast(ChatHelpers.macro(Messages.ESSENTIALS_PREFIX + " !Dark_Red!Vampiric Item [Hover Here]").setStyle(Style.EMPTY.withFont(Style.DEFAULT_FONT).withHoverEvent(HoverTip.getItem(stack))), ServerLifecycleHooks.getCurrentServer()); + } + + int newDmg = stack.getDamageValue() - (50 * lvl); + if(newDmg <= 0) newDmg = 0; + stack.setDamageValue(newDmg); + + } + } +} diff --git a/src/main/java/com/zontreck/enchantments/WaterBreathingEnchantment.java b/src/main/java/com/zontreck/enchantments/WaterBreathingEnchantment.java new file mode 100644 index 0000000..ea865b6 --- /dev/null +++ b/src/main/java/com/zontreck/enchantments/WaterBreathingEnchantment.java @@ -0,0 +1,85 @@ +package com.zontreck.enchantments; + + +import com.zontreck.AriasEssentials; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.libzontreck.util.ItemUtils; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraft.world.effect.MobEffects; +import net.minecraft.world.entity.EquipmentSlot; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentCategory; + +public class WaterBreathingEnchantment extends Enchantment +{ + + public WaterBreathingEnchantment(EquipmentSlot... slots) + { + super(Rarity.VERY_RARE, EnchantmentCategory.ARMOR_HEAD, slots); + } + + @Override + public int getMaxLevel() + { + return 1; + } + + @Override + public boolean isTreasureOnly(){ + return true; + } + @Override + public boolean isTradeable() + { + return true; + } + + // Not a bug. Flight is meant to be a permanent upgrade to a item. It is considered a curse due to unstable behavior. Flight will eat up durability and forge energy + // Flight should NOT be able to be removed via the grindstone + @Override + public boolean isCurse() + { + return false; + } + + public static void runEntityTick(ServerPlayer sp) + { + if(ServerUtilities.isClient()) return; + + + if(AEServerConfig.getInstance().enable_debug) + { + AriasEssentials.LOGGER.info("> WBreath Enchantment Tick <"); + } + + + ItemStack feet = sp.getItemBySlot(EquipmentSlot.HEAD); + + boolean hasEnchantment = false; + + if(ItemUtils.getEnchantmentLevel(ModEnchantments.WATER_BREATHING_ENCHANT.get(), feet)>0)hasEnchantment=true; + + if(hasEnchantment) + { + MobEffectInstance inst = new MobEffectInstance(MobEffects.WATER_BREATHING, 60*20, 4, false, false, true); + + MobEffectInstance existing = sp.getEffect(MobEffects.WATER_BREATHING); + if(existing != null) + { + if(existing.getDuration() <= (30*20)) + { + sp.addEffect(inst); + return; + }else return; + } + + sp.addEffect(inst); + } + + + } + +} diff --git a/src/main/java/dev/zontreck/essentials/entities/ModEntities.java b/src/main/java/com/zontreck/entities/ModEntities.java similarity index 74% rename from src/main/java/dev/zontreck/essentials/entities/ModEntities.java rename to src/main/java/com/zontreck/entities/ModEntities.java index 0375024..86c6f02 100644 --- a/src/main/java/dev/zontreck/essentials/entities/ModEntities.java +++ b/src/main/java/com/zontreck/entities/ModEntities.java @@ -1,8 +1,7 @@ -package dev.zontreck.essentials.entities; +package com.zontreck.entities; -import dev.zontreck.essentials.AriasEssentials; +import com.zontreck.AriasEssentials; import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.entity.Entity; import net.minecraft.world.entity.EntityType; import net.minecraft.world.entity.MobCategory; import net.minecraftforge.eventbus.api.IEventBus; @@ -10,13 +9,13 @@ import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; import net.minecraftforge.registries.RegistryObject; -public class ModEntities -{ - public static final DeferredRegister> REGISTER = DeferredRegister.create(ForgeRegistries.ENTITY_TYPES, AriasEssentials.MODID); +public class ModEntities { + + public static final DeferredRegister> REGISTER = DeferredRegister.create(ForgeRegistries.ENTITY_TYPES, AriasEssentials.MOD_ID); public static RegistryObject> TIAB_ENTITY = REGISTER.register("tiab_entity_type", ()->EntityType.Builder.of(TimeBoostEntity::new, MobCategory.MISC) .sized(0.1f, 0.1f) - .build(new ResourceLocation(AriasEssentials.MODID, "tiab_entity_type").toString()) + .build(new ResourceLocation(AriasEssentials.MOD_ID, "tiab_entity_type").toString()) ); diff --git a/src/main/java/dev/zontreck/essentials/entities/TimeBoostEntity.java b/src/main/java/com/zontreck/entities/TimeBoostEntity.java similarity index 94% rename from src/main/java/dev/zontreck/essentials/entities/TimeBoostEntity.java rename to src/main/java/com/zontreck/entities/TimeBoostEntity.java index c0fca69..e720c5b 100644 --- a/src/main/java/dev/zontreck/essentials/entities/TimeBoostEntity.java +++ b/src/main/java/com/zontreck/entities/TimeBoostEntity.java @@ -1,12 +1,11 @@ -package dev.zontreck.essentials.entities; +package com.zontreck.entities; -import dev.zontreck.essentials.configs.NBTKeys; -import dev.zontreck.essentials.configs.server.AEServerConfig; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.items.NBTKeys; import net.minecraft.core.BlockPos; import net.minecraft.nbt.CompoundTag; import net.minecraft.nbt.NbtUtils; import net.minecraft.network.protocol.Packet; -import net.minecraft.network.protocol.game.ClientGamePacketListener; import net.minecraft.network.syncher.EntityDataAccessor; import net.minecraft.network.syncher.EntityDataSerializers; import net.minecraft.network.syncher.SynchedEntityData; @@ -20,8 +19,7 @@ import net.minecraft.world.level.block.entity.BlockEntityType; import net.minecraft.world.level.block.state.BlockState; import net.minecraftforge.network.NetworkHooks; -public class TimeBoostEntity extends Entity -{ +public class TimeBoostEntity extends Entity { private static final EntityDataAccessor timeRate = SynchedEntityData.defineId(TimeBoostEntity.class, EntityDataSerializers.INT); private int remainingTime; diff --git a/src/main/java/dev/zontreck/essentials/events/CommandExecutionEvent.java b/src/main/java/com/zontreck/events/CommandExecutionEvent.java similarity index 80% rename from src/main/java/dev/zontreck/essentials/events/CommandExecutionEvent.java rename to src/main/java/com/zontreck/events/CommandExecutionEvent.java index 9c3f12e..8ce4a0d 100644 --- a/src/main/java/dev/zontreck/essentials/events/CommandExecutionEvent.java +++ b/src/main/java/com/zontreck/events/CommandExecutionEvent.java @@ -1,4 +1,4 @@ -package dev.zontreck.essentials.events; +package com.zontreck.events; import net.minecraft.world.entity.player.Player; import net.minecraftforge.eventbus.api.Cancelable; @@ -6,9 +6,10 @@ import net.minecraftforge.eventbus.api.Event; import java.util.UUID; + @Cancelable -public class CommandExecutionEvent extends Event -{ +public class CommandExecutionEvent extends Event { + public UUID playerID; public String command; diff --git a/src/main/java/dev/zontreck/essentials/events/HomeCreatedEvent.java b/src/main/java/com/zontreck/events/HomeCreatedEvent.java similarity index 82% rename from src/main/java/dev/zontreck/essentials/events/HomeCreatedEvent.java rename to src/main/java/com/zontreck/events/HomeCreatedEvent.java index a6c1cb0..38aabc7 100644 --- a/src/main/java/dev/zontreck/essentials/events/HomeCreatedEvent.java +++ b/src/main/java/com/zontreck/events/HomeCreatedEvent.java @@ -1,6 +1,7 @@ -package dev.zontreck.essentials.events; +package com.zontreck.events; -import dev.zontreck.essentials.homes.Home; + +import com.zontreck.homes.Home; import net.minecraftforge.eventbus.api.Cancelable; import net.minecraftforge.eventbus.api.Event; @@ -16,3 +17,4 @@ public class HomeCreatedEvent extends Event this.home=home; } } + diff --git a/src/main/java/dev/zontreck/essentials/events/HomeDeletedEvent.java b/src/main/java/com/zontreck/events/HomeDeletedEvent.java similarity index 63% rename from src/main/java/dev/zontreck/essentials/events/HomeDeletedEvent.java rename to src/main/java/com/zontreck/events/HomeDeletedEvent.java index 33ccd0e..e91bdfb 100644 --- a/src/main/java/dev/zontreck/essentials/events/HomeDeletedEvent.java +++ b/src/main/java/com/zontreck/events/HomeDeletedEvent.java @@ -1,7 +1,7 @@ -package dev.zontreck.essentials.events; +package com.zontreck.events; -import dev.zontreck.essentials.homes.Home; -import net.minecraftforge.eventbus.api.Cancelable; + +import com.zontreck.homes.Home; import net.minecraftforge.eventbus.api.Event; /** @@ -15,5 +15,6 @@ public class HomeDeletedEvent extends Event { this.home=home; } - + } + diff --git a/src/main/java/dev/zontreck/essentials/events/TeleportEvent.java b/src/main/java/com/zontreck/events/TeleportEvent.java similarity index 77% rename from src/main/java/dev/zontreck/essentials/events/TeleportEvent.java rename to src/main/java/com/zontreck/events/TeleportEvent.java index e142a4a..a7ee188 100644 --- a/src/main/java/dev/zontreck/essentials/events/TeleportEvent.java +++ b/src/main/java/com/zontreck/events/TeleportEvent.java @@ -1,12 +1,13 @@ -package dev.zontreck.essentials.events; +package com.zontreck.events; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; +import com.zontreck.util.TeleportContainer; import net.minecraftforge.eventbus.api.Cancelable; import net.minecraftforge.eventbus.api.Event; @Cancelable public class TeleportEvent extends Event { + private final TeleportContainer container; public TeleportEvent(TeleportContainer container) { diff --git a/src/main/java/com/zontreck/exceptions/NoSuchHomeException.java b/src/main/java/com/zontreck/exceptions/NoSuchHomeException.java new file mode 100644 index 0000000..e85ef92 --- /dev/null +++ b/src/main/java/com/zontreck/exceptions/NoSuchHomeException.java @@ -0,0 +1,5 @@ +package com.zontreck.exceptions; + +public class NoSuchHomeException extends Exception +{ +} diff --git a/src/main/java/dev/zontreck/essentials/homes/Home.java b/src/main/java/com/zontreck/homes/Home.java similarity index 86% rename from src/main/java/dev/zontreck/essentials/homes/Home.java rename to src/main/java/com/zontreck/homes/Home.java index ce832c4..701aba5 100644 --- a/src/main/java/dev/zontreck/essentials/homes/Home.java +++ b/src/main/java/com/zontreck/homes/Home.java @@ -1,16 +1,16 @@ -package dev.zontreck.essentials.homes; +package com.zontreck.homes; -import java.util.UUID; - -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.libzontreck.exceptions.InvalidDeserialization; +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import com.zontreck.util.TeleportDestination; import net.minecraft.nbt.CompoundTag; import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.Items; +import java.util.UUID; + public class Home { + public UUID owner; public String homeName; public TeleportDestination destination; diff --git a/src/main/java/dev/zontreck/essentials/homes/Homes.java b/src/main/java/com/zontreck/homes/Homes.java similarity index 84% rename from src/main/java/dev/zontreck/essentials/homes/Homes.java rename to src/main/java/com/zontreck/homes/Homes.java index 300834a..5ea1c68 100644 --- a/src/main/java/dev/zontreck/essentials/homes/Homes.java +++ b/src/main/java/com/zontreck/homes/Homes.java @@ -1,19 +1,20 @@ -package dev.zontreck.essentials.homes; +package com.zontreck.homes; + +import com.zontreck.events.HomeCreatedEvent; +import com.zontreck.events.HomeDeletedEvent; +import com.zontreck.exceptions.NoSuchHomeException; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.Tag; +import net.minecraftforge.common.MinecraftForge; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import dev.zontreck.essentials.events.HomeCreatedEvent; -import dev.zontreck.essentials.events.HomeDeletedEvent; -import dev.zontreck.essentials.exceptions.NoSuchHomeException; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.Tag; -import net.minecraftforge.common.MinecraftForge; - -public class Homes { +public class Homes +{ private final Map homes = new HashMap<>(); public String playerID; @@ -44,19 +45,16 @@ public class Homes { Home home = homes.get(name); HomeDeletedEvent e = new HomeDeletedEvent(home); homes.remove(name); - + MinecraftForge.EVENT_BUS.post(e); - HomesProvider.commitHomes(this); } public void add(Home toAdd) { HomeCreatedEvent hce = new HomeCreatedEvent(toAdd); - + if(!MinecraftForge.EVENT_BUS.post(hce)) homes.put(toAdd.homeName, toAdd); - - HomesProvider.commitHomes(this); } public static Homes deserialize(CompoundTag tag) @@ -81,5 +79,4 @@ public class Homes { tag.put("homes", lst); return tag; } - } diff --git a/src/main/java/com/zontreck/items/CreativeModeTabs.java b/src/main/java/com/zontreck/items/CreativeModeTabs.java new file mode 100644 index 0000000..d6d8c29 --- /dev/null +++ b/src/main/java/com/zontreck/items/CreativeModeTabs.java @@ -0,0 +1,28 @@ +package com.zontreck.items; + + +import com.zontreck.AriasEssentials; +import com.zontreck.block.ModBlocks; +import net.minecraft.world.item.CreativeModeTab; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.api.distmarker.Dist; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.registries.RegistryObject; + +@Mod.EventBusSubscriber(modid = AriasEssentials.MOD_ID, value = Dist.CLIENT) +public class CreativeModeTabs { + public static CreativeModeTab AETAB = new CreativeModeTab("ariasessentials") { + @Override + public ItemStack makeIcon() { + return new ItemStack(ModBlocks.BLUE_POOL_TILE.get().asItem()); + } + }; + + + public static RegistryObject addToAETab(RegistryObject item) + { + return item; + } +} + diff --git a/src/main/java/com/zontreck/items/DeprecatedItem.java b/src/main/java/com/zontreck/items/DeprecatedItem.java new file mode 100644 index 0000000..49e35d8 --- /dev/null +++ b/src/main/java/com/zontreck/items/DeprecatedItem.java @@ -0,0 +1,42 @@ +package com.zontreck.items; + + +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.network.chat.Component; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.Level; + +import java.util.List; + +public class DeprecatedItem extends Item +{ + public DeprecatedItem() + { + super(new Properties().fireResistant().tab(CreativeModeTabs.AETAB)); + } + + @Override + public boolean isFoil(ItemStack p_41453_) { + return true; + } + + /** + * This is to give a use to an otherwise useless item. The piglins will exchange the item and it gets removed in that way. + * @param stack + * @return + */ + @Override + public boolean isPiglinCurrency(ItemStack stack) { + return true; + } + + @Override + public void appendHoverText(ItemStack p_41421_, Level p_41422_, List p_41423_, TooltipFlag p_41424_) { + p_41423_.add(ChatHelpers.macro("!Dark_Red!This item is deprecated")); + p_41423_.add(ChatHelpers.macro("!Dark_Green!It would appear this item smells faintly of gold. Maybe piglins will accept it?")); + p_41423_.add(ChatHelpers.macro("!Dark_Red!This item is scheduled for removal in a future version. You should use it before it is too late.")); + } +} + diff --git a/src/main/java/com/zontreck/items/DeprecatedModItems.java b/src/main/java/com/zontreck/items/DeprecatedModItems.java new file mode 100644 index 0000000..bc04cf8 --- /dev/null +++ b/src/main/java/com/zontreck/items/DeprecatedModItems.java @@ -0,0 +1,19 @@ +package com.zontreck.items; + + +import com.zontreck.AriasEssentials; +import net.minecraft.world.item.Item; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class DeprecatedModItems +{ + public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MOD_ID); + + public static void register(IEventBus bus){ + ITEMS.register(bus); + } +} + diff --git a/src/main/java/com/zontreck/items/IhanCrystal.java b/src/main/java/com/zontreck/items/IhanCrystal.java new file mode 100644 index 0000000..636c4b1 --- /dev/null +++ b/src/main/java/com/zontreck/items/IhanCrystal.java @@ -0,0 +1,104 @@ +package com.zontreck.items; + + +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.network.chat.Component; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.stats.Stats; +import net.minecraft.world.InteractionHand; +import net.minecraft.world.InteractionResultHolder; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.level.Level; + +import java.util.List; + +public class IhanCrystal extends Item { + + public static final String TAG_XP = "xp"; + + public IhanCrystal() { + super(new Properties().stacksTo(1).tab(CreativeModeTabs.AETAB)); + } + + private void assertTag(ItemStack stack) + { + if(!stack.hasTag() || stack.getTag()==null) + { + stack.setTag(new CompoundTag()); + } + } + + @Override + public boolean isFoil(ItemStack stack) { + assertTag(stack); + + if(stack.getTag().contains(TAG_XP)) + { + if(stack.getTag().getInt(TAG_XP) > 0) + { + return true; + } + } + return false; + } + + @Override + public void appendHoverText(ItemStack stack, Level p_41422_, List tooltip, TooltipFlag p_41424_) { + assertTag(stack); + + tooltip.add(ChatHelpers.macro("!Dark_Green!Stored XP: !Dark_Red!" + stack.getTag().getInt(TAG_XP) + "!Dark_Green! " + Pluralize(stack.getTag().getInt(TAG_XP), "level"))); + } + + + private String Pluralize(int num, String str) { + return (num > 1 ? str + "s" : str); + } + + @Override + public InteractionResultHolder use(Level serverWorld, Player player, InteractionHand hand) { + ItemStack stack = player.getItemInHand(hand); + + assertTag(stack); + + serverWorld.playSound(player, player.getOnPos(), SoundEvents.EXPERIENCE_ORB_PICKUP, SoundSource.NEUTRAL, 1F, 1F); + + if(!serverWorld.isClientSide) + { + + ServerPlayer serverPlayer = (ServerPlayer) player; + if(player.isCrouching()) + { + int lvls=0; + // Unpack the experience levels - 10 at a time!! + int xp = stack.getTag().getInt(TAG_XP); + if(xp>10){ + lvls = 10; + }else lvls= xp; + xp-=lvls; + + serverPlayer.setExperienceLevels(serverPlayer.experienceLevel + lvls); + + stack.getTag().putInt(TAG_XP, xp); + } else { + // Store the xp + int xp = stack.getTag().getInt(TAG_XP); + xp += player.experienceLevel; + + serverPlayer.setExperienceLevels(0); + + stack.getTag().putInt(TAG_XP, xp); + } + } + + player.awardStat(Stats.ITEM_USED.get(this)); + return InteractionResultHolder.sidedSuccess(stack, serverWorld.isClientSide); + + } + +} diff --git a/src/main/java/com/zontreck/items/MagmaPowder.java b/src/main/java/com/zontreck/items/MagmaPowder.java new file mode 100644 index 0000000..f1a0916 --- /dev/null +++ b/src/main/java/com/zontreck/items/MagmaPowder.java @@ -0,0 +1,69 @@ +package com.zontreck.items; + +import com.zontreck.AriasEssentials; +import net.minecraft.core.BlockPos; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.InteractionResult; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.context.UseOnContext; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.Blocks; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraftforge.registries.ForgeRegistries; + +import java.awt.*; + +public class MagmaPowder extends Item +{ + MagmaPowder(Item.Properties props) { + super(props); + } + + + @Override + public InteractionResult useOn(UseOnContext context) { + BlockPos usedOn = context.getClickedPos(); + Player player = context.getPlayer(); + Level level = context.getLevel(); + + // Get the block state at the position where the item was used + BlockState blockState = level.getBlockState(usedOn); + Block block = blockState.getBlock(); + + // Check if the block is fractured bedrock, seeping bedrock, or regular bedrock + try{ + if (block == ForgeRegistries.BLOCKS.getValue(new ResourceLocation("tetra:fractured_bedrock")) || + block == ForgeRegistries.BLOCKS.getValue(new ResourceLocation("tetra:seeping_bedrock"))) { + + // Do something if the block is one of the specified types + if (player != null && !level.isClientSide()) { + // Replace with new Tetra Seeping Bedrock + Block seepingBedrock = ForgeRegistries.BLOCKS.getValue(new ResourceLocation("tetra:seeping_bedrock")); + if(seepingBedrock == null || seepingBedrock == Blocks.AIR) + { + return InteractionResult.FAIL; + } + level.setBlock(usedOn, seepingBedrock.defaultBlockState(), 0); + } + + if(!player.isCreative()) { + context.getItemInHand().shrink(1); + } + + // Return success to indicate the interaction was successful + return InteractionResult.SUCCESS; + } + }catch(Exception E) { + // We likely do not have Tetra + AriasEssentials.LOGGER.info("Tetra is not installed?"); + + return InteractionResult.FAIL; + + } + // If the block is not one of the specified types, do nothing special + return InteractionResult.PASS; + } + +} diff --git a/src/main/java/com/zontreck/items/MobCaptureBallItem.java b/src/main/java/com/zontreck/items/MobCaptureBallItem.java new file mode 100644 index 0000000..45620e1 --- /dev/null +++ b/src/main/java/com/zontreck/items/MobCaptureBallItem.java @@ -0,0 +1,58 @@ +package com.zontreck.items; + + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.stats.Stats; +import net.minecraft.world.InteractionHand; +import net.minecraft.world.InteractionResultHolder; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.Level; + +public class MobCaptureBallItem extends Item +{ + public MobCaptureBallItem() { + super(new Properties().tab(CreativeModeTabs.AETAB)); + } + @Override + public boolean isFoil(ItemStack pStack) { + if(!pStack.hasTag() || pStack.getTag()==null) + { + pStack.setTag(new CompoundTag()); + } + if(pStack.getTag().contains("entity")) + { + return true; + } else return false; + } + + @Override + public InteractionResultHolder use(Level pLevel, Player pPlayer, InteractionHand pUsedHand) { + ItemStack stack = pPlayer.getItemInHand(pUsedHand); + pLevel.playSound((Player) null, pPlayer.getX(), pPlayer.getY(), pPlayer.getZ(), SoundEvents.EGG_THROW, SoundSource.PLAYERS, 0.5F, 0.4F / (pLevel.random.nextFloat() * 0.4f + 0.8f)); + if(!pLevel.isClientSide) + { + ItemStack single = stack.copy(); + single.setCount(1); + + if(!pPlayer.getAbilities().instabuild) + { + stack.shrink(1); + }else { + + } + + ThrownMobCaptureBall TPB = new ThrownMobCaptureBall(pLevel, pPlayer, single); + + + TPB.shootFromRotation(pPlayer, pPlayer.getXRot(), pPlayer.getYRot(), 0.0F, 1.5F, 1.0F); + pLevel.addFreshEntity(TPB); + } + + pPlayer.awardStat(Stats.ITEM_USED.get(this)); + return super.use(pLevel, pPlayer, pUsedHand); + } +} diff --git a/src/main/java/com/zontreck/items/ModItems.java b/src/main/java/com/zontreck/items/ModItems.java new file mode 100644 index 0000000..e327345 --- /dev/null +++ b/src/main/java/com/zontreck/items/ModItems.java @@ -0,0 +1,56 @@ +package com.zontreck.items; + +import com.zontreck.items.impl.TimeBottle; +import net.minecraft.world.item.SimpleFoiledItem; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraft.world.item.Item; +import com.zontreck.AriasEssentials; +import net.minecraftforge.registries.RegistryObject; + +public class ModItems { + public static DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MOD_ID); + + public static RegistryObject TIAB = ITEMS.register("tiab", ()->new TimeBottle()); + + + + public static final RegistryObject IHAN_CRYSTAL = CreativeModeTabs.addToAETab(ITEMS.register("ihan_crystal", () -> new IhanCrystal())); + + public static final RegistryObject ETERNIUM_RAW_ORE = CreativeModeTabs.addToAETab(ITEMS.register("eternium_ore", () -> new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject ETERNIUM_INGOT = CreativeModeTabs.addToAETab(ITEMS.register("eternium_ingot", ()-> new SimpleFoiledItem(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject ETERNIUM_ROD = CreativeModeTabs.addToAETab(ITEMS.register("eternium_rod", () -> new SimpleFoiledItem(new Item.Properties().stacksTo(64).tab(CreativeModeTabs.AETAB)))); + + + public static final RegistryObject MIAB = CreativeModeTabs.addToAETab(ITEMS.register("mob_capture_ball", ()->new MobCaptureBallItem())); + + + public static final RegistryObject EMPTY_SPAWN_EGG = CreativeModeTabs.addToAETab(ITEMS.register("empty_spawn_egg", () -> new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject GENERIC_DEPRECATED_ITEM = CreativeModeTabs.addToAETab(ITEMS.register("deprecated", ()->new DeprecatedItem())); + + public static final RegistryObject WHITE_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("white_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject BLUE_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("blue_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject LIGHT_BLUE_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("light_blue_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject CYAN_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("cyan_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject DARK_RED_DYE = CreativeModeTabs.addToAETab(ITEMS.register("dark_red_dye", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject RED_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("red_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject DARK_RED_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("dark_red_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject GREEN_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("green_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject LIME_BRICK = CreativeModeTabs.addToAETab(ITEMS.register("lime_brick", ()->new Item(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + + public static final RegistryObject PARTIAL_ITEM = CreativeModeTabs.addToAETab(ITEMS.register("partial_item", PartialItem::new)); + + public static final RegistryObject MAGMA_POWDER = CreativeModeTabs.addToAETab(ITEMS.register("magma_powder", ()-> new MagmaPowder(new Item.Properties().tab(CreativeModeTabs.AETAB)))); + +} diff --git a/src/main/java/dev/zontreck/essentials/configs/NBTKeys.java b/src/main/java/com/zontreck/items/NBTKeys.java similarity index 90% rename from src/main/java/dev/zontreck/essentials/configs/NBTKeys.java rename to src/main/java/com/zontreck/items/NBTKeys.java index 6bfc121..badbf66 100644 --- a/src/main/java/dev/zontreck/essentials/configs/NBTKeys.java +++ b/src/main/java/com/zontreck/items/NBTKeys.java @@ -1,5 +1,4 @@ -package dev.zontreck.essentials.configs; - +package com.zontreck.items; public class NBTKeys { // for time in a bottle item diff --git a/src/main/java/com/zontreck/items/PartialItem.java b/src/main/java/com/zontreck/items/PartialItem.java new file mode 100644 index 0000000..6c32622 --- /dev/null +++ b/src/main/java/com/zontreck/items/PartialItem.java @@ -0,0 +1,116 @@ +package com.zontreck.items; + + +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.core.UUIDUtil; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.StringTag; +import net.minecraft.nbt.Tag; +import net.minecraft.network.chat.Component; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.TooltipFlag; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentHelper; +import net.minecraft.world.level.Level; +import net.minecraftforge.registries.ForgeRegistries; + +import javax.annotation.Nullable; +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.UUID; + +public class PartialItem extends Item +{ + private static final String TAG_UNCRAFT_REMAIN = "remaining"; + private static final String TAG_UNCRAFT_LIST = "Items"; + + @Override + public boolean isEnchantable(ItemStack p_41456_) { + return true; + } + + @Override + public boolean canApplyAtEnchantingTable(ItemStack stack, Enchantment enchantment) { + return false; + } + + @Override + public boolean isBookEnchantable(ItemStack stack, ItemStack book) { + return false; + } + + public PartialItem() { + super (new Properties().fireResistant().tab(CreativeModeTabs.AETAB)); + } + + @Override + public void appendHoverText(ItemStack stack, @Nullable Level p_41422_, List tooltip, TooltipFlag p_41424_) { + tooltip.add(ChatHelpers.macro("!Yellow!This is a partially deconstructed item.")); + + if(stack.getTag()!= null) + { + if(stack.getTag().contains(TAG_UNCRAFT_REMAIN)) + { + tooltip.add(ChatHelpers.macro("!Dark_Red!Number of uncraft steps remaining: [0]", "!Yellow!" + stack.getTag().getInt(TAG_UNCRAFT_REMAIN))); + } + if(stack.getTag().contains(ItemStack.TAG_ENCH)) + { + tooltip.add(ChatHelpers.macro("!Dark_Red!Number of Enchantments remaining: [0]", "!Yellow!" + stack.getTag().getList(ItemStack.TAG_ENCH, Tag.TAG_COMPOUND).size())); + } + } else { + tooltip.add(ChatHelpers.macro("!Dark_Red!This partial item appears to be invalid, and contains no fragments.")); + } + } + + public static List getRemainingIngredients(ItemStack stack) + { + List itx = new ArrayList<>(); + if(stack.getTag()!=null) + { + if(stack.getTag().contains(TAG_UNCRAFT_LIST)) + { + ListTag lst = stack.getTag().getList(TAG_UNCRAFT_LIST, ListTag.TAG_STRING); + + for (Tag tag : + lst) { + StringTag st = (StringTag)tag; + itx.add(deserializeItemType(st.getAsString())); + } + + } + + } + + return itx; + } + + private static Item deserializeItemType(String item) + { + return ForgeRegistries.ITEMS.getValue(new ResourceLocation(item)); + } + + public static ItemStack makePartialItem(ItemStack original, boolean enchantMode, boolean uncraftMode) + { + if(enchantMode) + { + ItemStack partial = new ItemStack(ModItems.PARTIAL_ITEM.get(), 1); + CompoundTag tag = new CompoundTag(); + Map enchants = EnchantmentHelper.getEnchantments(original); + partial.setTag(tag); + for(Map.Entry entry : enchants.entrySet()) + { + //UUID id = UUIDUtil.createOfflinePlayerUUID() + //UUID.nameUUIDFromBytes() + partial.enchant(entry.getKey(), entry.getValue()); + } + + + return partial; + } else return original; + } +} + diff --git a/src/main/java/com/zontreck/items/ThrownMobCaptureBall.java b/src/main/java/com/zontreck/items/ThrownMobCaptureBall.java new file mode 100644 index 0000000..d3e1cc3 --- /dev/null +++ b/src/main/java/com/zontreck/items/ThrownMobCaptureBall.java @@ -0,0 +1,213 @@ +package com.zontreck.items; + + +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.lore.LoreContainer; +import com.zontreck.libzontreck.lore.LoreEntry; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.core.particles.ItemParticleOption; +import net.minecraft.core.particles.ParticleTypes; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.entity.Entity; +import net.minecraft.world.entity.EntityType; +import net.minecraft.world.entity.LivingEntity; +import net.minecraft.world.entity.item.ItemEntity; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.entity.projectile.ThrowableItemProjectile; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.Level; +import net.minecraft.world.phys.EntityHitResult; +import net.minecraft.world.phys.HitResult; + +import java.util.Optional; +import java.util.UUID; + +public class ThrownMobCaptureBall extends ThrowableItemProjectile +{ + boolean captured = false; + LivingEntity shooter; + ItemStack self; + + public ThrownMobCaptureBall(EntityType entity, Level level) + { + super(entity, level); + } + public ThrownMobCaptureBall(Level level, LivingEntity shooter, ItemStack item) + { + super(EntityType.EGG, shooter, level); + + this.shooter = shooter; + if(item.getTag() == null) + { + item.setTag(new CompoundTag()); + } + self=item; + } + + @Override + protected Item getDefaultItem() + { + return ModItems.MIAB.get(); + } + + void returnBall() + { + + ItemEntity x; + + if(shooter!=null) + x = new ItemEntity(level, shooter.position().x, shooter.position().y, shooter.position().z, self, 0, 0, 0); + else + x = new ItemEntity(level, position().x, position().y, position().z, self, 0, 0, 0); + level.addFreshEntity(x); + } + + @Override + public void handleEntityEvent(byte pId) { + if(pId == 3) + { + double size = 0.08; + + for (int i = 0; i < 8; ++i) + { + this.level.addParticle(new ItemParticleOption(ParticleTypes.ITEM, this.getItem()), this.getX(), this.getY(), this.getZ(), ((double)this.random.nextFloat() - 0.5) * 0.08, ((double)this.random.nextFloat() - 0.5) * 0.08, ((double)this.random.nextFloat() - 0.5) * 0.08); + } + } + } + + @Override + protected void onHitEntity(EntityHitResult pResult) { + super.onHitEntity(pResult); + if(ServerUtilities.isServer()) + { + CompoundTag tag = self.getTag(); + if(tag == null)tag = new CompoundTag(); + if(tag.contains(ItemStack.TAG_DAMAGE)) + { + tag.remove(ItemStack.TAG_DAMAGE); + } + + + if(self.getTag() == null || !self.getTag().contains("entity")) + { + /* + + Ensure the tag is not null + + */ + + if(pResult.getEntity() instanceof LivingEntity le && !(le instanceof Player player)) + { + // We don't want to capture players + // Store the entity in the entity tag, then kill the entity + + + CompoundTag store = new CompoundTag(); + String entityName = le.getName().getString(); + le.save(store); + + self.getTag().put("entity", store); + self.setCount(1); + captured=true; + + LoreContainer cont = new LoreContainer(self); + cont.miscData.loreData.clear(); + LoreEntry entry = new LoreEntry.Builder().bold(true).text(ChatColor.doColors("!Dark_Green!Captured Mob: !Dark_Purple!" + entityName)).build(); + cont.miscData.loreData.add(entry); + + cont.commitLore(); + + le.remove(RemovalReason.DISCARDED); + } + } else { + + // Don't capture the entity + + //pResult.getEntity().hurt(this.shooter.getLastDamageSource().thrown(this, this.getOwner()), 0.1F); + } + } + } + + @Override + protected void onHit(HitResult pResult) { + super.onHit(pResult); + + if(ServerUtilities.isServer()) + { + // We do two things here + + // 1. If we contain an entity, spawn it + // 2. If no entity, and none was captured, decrease the durability a little + // 3. Drop the PossBall with entity, or without + + ItemStack item = self; + CompoundTag tag = item.getTag(); + + if(tag==null)tag=new CompoundTag(); + + if(tag.contains(ItemStack.TAG_DAMAGE)) + { + tag.remove(ItemStack.TAG_DAMAGE); // Migrate existing poss balls to remove the obsolete damage tag + } + + if(tag.contains("entity")) + { + if(captured) + { + // Spawn poss ball item with the entity NBT + returnBall(); + } else { + // Spawn the real entity + Optional entity = EntityType.create(tag.getCompound("entity"), level); + if(entity.isPresent()) + { + Entity xEntity = entity.get(); + xEntity.setUUID(UUID.randomUUID()); + xEntity.setPos(position()); + level.addFreshEntity(xEntity); + } + + LoreContainer cont = new LoreContainer(item); + cont.miscData.loreData.clear(); + cont.commitLore(); + + if(item.getDamageValue() == 0) + { + item.setTag(new CompoundTag()); + }else { + tag.remove("entity"); + } + + + returnBall(); + } + } else { + // No capture + // Decrease the durability + //int damage = item.getDamageValue(); + //damage++; + //item.setDamageValue(damage); + // Ensure no entity tag! + tag.remove("entity"); + + if(tag.size()==0) + { + tag=null; + item.setTag(new CompoundTag()); + } + + + //if(item.getDamageValue() >= item.getMaxDamage()) + // return; + + + returnBall(); + } + + this.level.broadcastEntityEvent(this, (byte)3); + this.discard(); + + } + } +} diff --git a/src/main/java/dev/zontreck/essentials/items/abstraction/AbstractBottle.java b/src/main/java/com/zontreck/items/abstracts/AbstractTIAB.java similarity index 73% rename from src/main/java/dev/zontreck/essentials/items/abstraction/AbstractBottle.java rename to src/main/java/com/zontreck/items/abstracts/AbstractTIAB.java index acff3e9..f092562 100644 --- a/src/main/java/dev/zontreck/essentials/items/abstraction/AbstractBottle.java +++ b/src/main/java/com/zontreck/items/abstracts/AbstractTIAB.java @@ -1,13 +1,20 @@ -package dev.zontreck.essentials.items.abstraction; +package com.zontreck.items.abstracts; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.entities.TimeBoostEntity; -import dev.zontreck.essentials.util.SoundUtilities; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.entities.TimeBoostEntity; +import com.zontreck.items.CreativeModeTabs; +import com.zontreck.util.SoundUtilities; +import net.minecraft.client.particle.Particle; import net.minecraft.core.BlockPos; +import net.minecraft.core.particles.ParticleOptions; +import net.minecraft.core.particles.ParticleTypes; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; import net.minecraft.world.InteractionResult; import net.minecraft.world.entity.player.Player; import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.PickaxeItem; import net.minecraft.world.item.context.UseOnContext; import net.minecraft.world.level.Level; import net.minecraft.world.level.block.entity.BlockEntity; @@ -16,11 +23,41 @@ import net.minecraft.world.phys.AABB; import java.util.Optional; -public abstract class AbstractBottle extends Item { +public abstract class AbstractTIAB extends Item { private static final String[] NOTES = {"C", "D", "E", "F", "G2", "A2", "B2", "C2", "D2", "E2", "F2"}; - public AbstractBottle() { - super(new Properties().stacksTo(1)); + public AbstractTIAB() { + super(new Properties().stacksTo(1).tab(CreativeModeTabs.AETAB)); + } + + public abstract void setExpired(ItemStack stack); + public abstract boolean getExpired(ItemStack stack); + public abstract int getAvailableUses(ItemStack stack); + + public abstract void enableDurability(ItemStack stack); + public abstract void updateDurability(ItemStack stack); + + @Override + public int getMaxDamage(ItemStack stack) { + if(getExpired(stack)){ + return stack.getOrCreateTag().getInt("max"); + }else return 0; + } + + @Override + public boolean isDamageable(ItemStack stack) { + return getExpired(stack); + } + + @Override + public boolean isDamaged(ItemStack stack) { + return getExpired(stack) ? (stack.getOrCreateTag().getInt("cur") > 0) : false; + } + + @Override + public int getDamage(ItemStack stack) { + if(getExpired(stack)) return stack.getOrCreateTag().getInt("cur"); + else return 0; } @Override @@ -73,6 +110,8 @@ public abstract class AbstractBottle extends Item { TimeBoostEntity entityTA = new TimeBoostEntity(level, pos, pos.getX() + 0.5, pos.getY() + 0.5, pos.getZ() + 0.5); entityTA.setRemainingTime(getEachUseDuration()); level.addFreshEntity(entityTA); + + } if (!isCreativeMode) { @@ -80,6 +119,12 @@ public abstract class AbstractBottle extends Item { } playSound(level, pos, nextRate); + if(getDamage(stack) >= getMaxDamage(stack) && getExpired(stack)) { + level.playSound(null, pos, SoundEvents.GLASS_BREAK, SoundSource.PLAYERS, 0.5F, 0.5F); + + player.getInventory().removeItem(stack); + } + return InteractionResult.SUCCESS; } diff --git a/src/main/java/dev/zontreck/essentials/items/implementation/TimeBottle.java b/src/main/java/com/zontreck/items/impl/TimeBottle.java similarity index 62% rename from src/main/java/dev/zontreck/essentials/items/implementation/TimeBottle.java rename to src/main/java/com/zontreck/items/impl/TimeBottle.java index 2be04ff..ea991ba 100644 --- a/src/main/java/dev/zontreck/essentials/items/implementation/TimeBottle.java +++ b/src/main/java/com/zontreck/items/impl/TimeBottle.java @@ -1,25 +1,22 @@ -package dev.zontreck.essentials.items.implementation; +package com.zontreck.items.impl; -import dev.zontreck.ariaslib.util.TimeUtil; -import dev.zontreck.essentials.configs.NBTKeys; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.items.abstraction.AbstractBottle; -import dev.zontreck.essentials.util.StylesUtil; -import dev.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.ariaslib.util.TimeUtil; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.items.NBTKeys; +import com.zontreck.items.abstracts.AbstractTIAB; +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.nbt.ByteTag; import net.minecraft.nbt.CompoundTag; import net.minecraft.network.chat.Component; import net.minecraft.world.entity.Entity; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.item.Item; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.TooltipFlag; import net.minecraft.world.level.Level; import java.util.List; -public class TimeBottle extends AbstractBottle +public class TimeBottle extends AbstractTIAB { - public TimeBottle() { super(); } @@ -38,6 +35,18 @@ public class TimeBottle extends AbstractBottle } } + @Override + public void updateDurability(ItemStack stack) { + stack.getOrCreateTag().putInt("cur", getMaxDamage(stack) - getAvailableUses(stack)); + } + + @Override + public void enableDurability(ItemStack stack) { + stack.getOrCreateTag().putInt("max", getAvailableUses(stack)); + updateDurability(stack); + + } + @Override public void appendHoverText(ItemStack itemStack, Level world, List tooltip, TooltipFlag flag) { super.appendHoverText(itemStack, world, tooltip, flag); @@ -50,7 +59,14 @@ public class TimeBottle extends AbstractBottle tooltip.add(ChatHelpers.macro(AEServerConfig.getInstance().bottles.accumulatedTimeStr, TimeUtil.secondsToTimeNotation(TimeUtil.ticksToSeconds(totalAccumulatedTime, AEServerConfig.getInstance().bottles.ticks)).toString())); - tooltip.add(ChatHelpers.macro(AEServerConfig.getInstance().bottles.totalUses, "" + TimeUtil.ticksToSeconds(storedTime, AEServerConfig.getInstance().bottles.ticks) / AEServerConfig.getInstance().bottles.eachUseDuration)); + tooltip.add(ChatHelpers.macro(AEServerConfig.getInstance().bottles.totalUses, "" + getAvailableUses(itemStack))); + + tooltip.add(ChatHelpers.macro(AEServerConfig.getInstance().bottles.expiredBottle, "" + (getExpired(itemStack) ? "!Dark_Red!Expired" : "!Dark_Green!still able to be used"), getExpired(itemStack) ? ", !Dark_Red!This item will break when it hits zero available uses." : "")); + } + + @Override + public int getAvailableUses(ItemStack stack) { + return TimeUtil.ticksToSeconds(getStoredEnergy(stack), AEServerConfig.getInstance().bottles.ticks) / AEServerConfig.getInstance().bottles.eachUseDuration; } @Override @@ -67,6 +83,10 @@ public class TimeBottle extends AbstractBottle @Override public void applyDamage(ItemStack stack, int damage) { setStoredEnergy(stack, getStoredEnergy(stack) - damage); + + if(getExpired(stack)) { + updateDurability(stack); + } } public int getTotalAccumulatedTime(ItemStack stack) { @@ -78,6 +98,19 @@ public class TimeBottle extends AbstractBottle stack.getOrCreateTag().putInt(NBTKeys.TOTAL_ACCUMULATED_TIME, newValue); } + @Override + public void setExpired(ItemStack stack) { + stack.getOrCreateTag().putBoolean("expired", true); + + enableDurability(stack); + } + + + @Override + public boolean getExpired(ItemStack stack) { + return stack.getOrCreateTag().getBoolean("expired"); + } + @Override public void inventoryTick(ItemStack itemStack, Level level, Entity entity, int itemSlot, boolean isSelected) { @@ -87,14 +120,25 @@ public class TimeBottle extends AbstractBottle } if (level.getGameTime() % AEServerConfig.getInstance().bottles.ticks == 0) { + if(getExpired(itemStack)) return; + int storedTime = this.getStoredEnergy(itemStack); if (storedTime < (AEServerConfig.getInstance().bottles.maxTime * 20)) { this.setStoredEnergy(itemStack, storedTime + AEServerConfig.getInstance().bottles.ticks); } int totalAccumulatedTime = this.getTotalAccumulatedTime(itemStack); + if(totalAccumulatedTime >= Integer.MAX_VALUE && !getExpired(itemStack)) { + } if (totalAccumulatedTime < (AEServerConfig.getInstance().bottles.maxTime * 20)) { + //this.setTotalAccumulatedTime(itemStack, Integer.MAX_VALUE); this.setTotalAccumulatedTime(itemStack, totalAccumulatedTime + AEServerConfig.getInstance().bottles.ticks); + }else { + if(!getExpired(itemStack)) + // The time bottle has now exceeded total possible uses. + // Set a flag so that the bottle is deleted after it reaches zero total uses. + this.setExpired(itemStack); + return; } } } diff --git a/src/main/java/com/zontreck/items/tags/ItemStatTag.java b/src/main/java/com/zontreck/items/tags/ItemStatTag.java new file mode 100644 index 0000000..0673aa1 --- /dev/null +++ b/src/main/java/com/zontreck/items/tags/ItemStatTag.java @@ -0,0 +1,37 @@ +package com.zontreck.items.tags; + + +import net.minecraft.nbt.CompoundTag; + +public class ItemStatTag { + public static final String STATS_TAG = "stat"; + public ItemStatType type; + public int tagPosition; + public int value; + + public ItemStatTag(ItemStatType t, int tagPos, int tag) + { + type = t; + value = tag; + tagPosition = tagPos; + } + + public void increment(){ + value++; + } + public void decrement() + { + value--; + } + + public void setValue(int value) + { + this.value=value; + } + + public void save(CompoundTag tag) + { + tag.putInt(STATS_TAG+"_"+type.name().toLowerCase(), value); + } +} + diff --git a/src/main/java/com/zontreck/items/tags/ItemStatType.java b/src/main/java/com/zontreck/items/tags/ItemStatType.java new file mode 100644 index 0000000..bbf1b51 --- /dev/null +++ b/src/main/java/com/zontreck/items/tags/ItemStatType.java @@ -0,0 +1,16 @@ +package com.zontreck.items.tags; + + +public enum ItemStatType { + SWORD, + ARMOR, + PICK, + AXE, + SHOVEL, + SHOVELPATH, + HOE, + SHEARS, + EGGING, + EGG_CHANCE +} + diff --git a/src/main/java/com/zontreck/items/tags/ItemStatistics.java b/src/main/java/com/zontreck/items/tags/ItemStatistics.java new file mode 100644 index 0000000..f422eb1 --- /dev/null +++ b/src/main/java/com/zontreck/items/tags/ItemStatistics.java @@ -0,0 +1,54 @@ +package com.zontreck.items.tags; + + +import com.zontreck.libzontreck.chat.ChatColor; + +public class ItemStatistics { + + public static String makeText(ItemStatTag tag) + { + return makeText(tag.type, tag.value); + } + public static String makeText(ItemStatType type, int val) + { + String lore = ChatColor.doColors("!White!"); + String sAppend = ""; + switch(type) + { + case SWORD -> { + lore += "Mobs Killed: "; + } + case PICK -> { + lore += "Blocks Mined: "; + } + case ARMOR -> { + lore += "Damage Taken: "; + } + case SHOVEL -> { + lore += "Blocks Dug Up: "; + } + case SHOVELPATH -> { + lore += "Paths Made: "; + } + case AXE -> { + lore += "Wood Chopped: "; + } + case HOE -> { + lore += "Blocks Hoed: "; + } + case SHEARS -> { + lore += "Sheep Shaved: "; + } + case EGGING -> { + lore += "Spawn Eggs Dropped: "; + } + case EGG_CHANCE -> { + lore += "Spawn Egg Chance: "; + sAppend = "!White!%"; + } + } + lore += ChatColor.doColors("!Green!"+val + sAppend); + return lore; + } +} + diff --git a/src/main/java/com/zontreck/items/tags/ModIDs.java b/src/main/java/com/zontreck/items/tags/ModIDs.java new file mode 100644 index 0000000..df572a4 --- /dev/null +++ b/src/main/java/com/zontreck/items/tags/ModIDs.java @@ -0,0 +1,24 @@ +package com.zontreck.items.tags; + + +import java.util.UUID; + +public enum ModIDs { + NULL(0,0), + AC(0x9f, 0x9f), + AE(5292022,1182023), // The date range of mod creation, then the day when this feature was added + ITEM_STATS(154301182023L, 0x9f); + + private UUID ID; + + ModIDs(long A, long B) + { + ID=new UUID(A,B); + } + + public UUID get() + { + return ID; + } +} + diff --git a/src/main/java/com/zontreck/libzontreck/LibZontreck.java b/src/main/java/com/zontreck/libzontreck/LibZontreck.java new file mode 100644 index 0000000..5386656 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/LibZontreck.java @@ -0,0 +1,176 @@ +package com.zontreck.libzontreck; + +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.sql.SQLException; +import java.util.HashMap; +import java.util.Iterator; +import java.util.Map; +import java.util.UUID; +import java.util.concurrent.Executors; +import java.util.concurrent.ScheduledExecutorService; + +import com.zontreck.libzontreck.chestgui.ChestGUIRegistry; +import com.zontreck.libzontreck.config.ServerConfig; +import com.zontreck.libzontreck.currency.Bank; +import com.zontreck.libzontreck.currency.CurrencyHelper; +import com.zontreck.libzontreck.events.BlockRestoreQueueRegistrationEvent; +import com.zontreck.libzontreck.items.ModItems; +import com.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; +import com.zontreck.libzontreck.memory.world.DatabaseMigrations; +import com.zontreck.libzontreck.memory.world.DatabaseWrapper; +import com.zontreck.libzontreck.menus.ChestGUIScreen; +import com.zontreck.libzontreck.types.ModMenuTypes; +import com.zontreck.libzontreck.networking.NetworkEvents; +import net.minecraft.client.gui.screens.MenuScreens; +import net.minecraft.server.level.ServerLevel; +import org.slf4j.Logger; + +import com.mojang.logging.LogUtils; + +import com.zontreck.libzontreck.commands.Commands; +import com.zontreck.libzontreck.events.ForgeEventHandlers; +import com.zontreck.libzontreck.memory.player.VolatilePlayerStorage; +import com.zontreck.libzontreck.networking.ModMessages; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.util.FileTreeDatastore; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.server.ServerStartedEvent; +import net.minecraftforge.event.server.ServerStoppingEvent; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.LogicalSide; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; +import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; +import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; + +@Mod(LibZontreck.MOD_ID) +public class LibZontreck { + public static final Logger LOGGER = LogUtils.getLogger(); + public static final String MOD_ID = "libzontreck"; + public static final Map PROFILES; + public static VolatilePlayerStorage playerStorage; + public static boolean ALIVE=true; + public static final String FILESTORE = FileTreeDatastore.get(); + public static final Path BASE_CONFIG; + public static final String PLAYER_INFO_URL = "https://api.mojang.com/users/profiles/minecraft/"; + public static final String PLAYER_SKIN_URL = "https://sessionserver.mojang.com/session/minecraft/profile/"; + public static final UUID NULL_ID; + + public static boolean LIBZONTRECK_SERVER_AVAILABLE=false; + public static ScheduledExecutorService executor = Executors.newScheduledThreadPool(1); + + + public static LogicalSide CURRENT_SIDE; + + + + static{ + NULL_ID = new UUID(0,0); + PROFILES = new HashMap<>(); + BASE_CONFIG = FileTreeDatastore.of("libzontreck"); + + if(!BASE_CONFIG.toFile().exists()) + { + try { + Files.createDirectory(BASE_CONFIG); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + + public LibZontreck(){ + LibZontreck.playerStorage=new VolatilePlayerStorage(); + IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus(); + // Register the setup method for modloading + bus.addListener(this::setup); + + ServerConfig.init(); + + + MinecraftForge.EVENT_BUS.register(this); + MinecraftForge.EVENT_BUS.register(new ForgeEventHandlers()); + MinecraftForge.EVENT_BUS.register(new Commands()); + MinecraftForge.EVENT_BUS.register(new NetworkEvents()); + MinecraftForge.EVENT_BUS.register(ChestGUIRegistry.class); + + + ModMenuTypes.REGISTRY.register(bus); + //CreativeModeTabs.register(bus); + ModItems.register(bus); + + MinecraftForge.EVENT_BUS.register(CurrencyHelper.class); + MinecraftForge.EVENT_BUS.register(Bank.class); + + } + + private void setup(final FMLCommonSetupEvent event) + { + ModMessages.register(); + } + + + @SubscribeEvent + public void onServerStarted(final ServerStartedEvent event) + { + ALIVE=true; + + ServerConfig.init(); + try { + DatabaseWrapper.start(); + }catch(RuntimeException e) { + LOGGER.warn("Database not configured properly, it will not be available."); + DatabaseWrapper.invalidate(); + } + + CURRENT_SIDE = LogicalSide.SERVER; + + /*MinecraftForge.EVENT_BUS.post(new BlockRestoreQueueRegistrationEvent()); + + for(ServerLevel level : event.getServer().getAllLevels()) + { + // Queues have been registered, but we now need to initialize the queue's data from saveddata + BlockRestoreQueueRegistry.init(level); + } +*/ + if(!DatabaseWrapper.hasDB)return; + + try { + DatabaseMigrations.initMigrations(); + } catch (SQLException e) { + e.printStackTrace(); + } + } + + @SubscribeEvent + public void onServerStopping(final ServerStoppingEvent ev) + { + ALIVE=false; + + Iterator iProfile = PROFILES.values().iterator(); + while(iProfile.hasNext()) + { + Profile prof = iProfile.next(); + prof.commit(); + iProfile.remove(); + prof=null; + } + } + + @Mod.EventBusSubscriber(modid = MOD_ID, bus = Mod.EventBusSubscriber.Bus.MOD) + public static class ClientModEvents + { + @SubscribeEvent + public static void onClientSetup(FMLClientSetupEvent ev) { + LibZontreck.CURRENT_SIDE = LogicalSide.CLIENT; + LibZontreck.ALIVE = false; // Prevents loops on the client that are meant for server tick processing + + + MenuScreens.register(ModMenuTypes.CHEST_GUI_MENU.get(), ChestGUIScreen::new); + } + } + +} diff --git a/src/main/java/com/zontreck/libzontreck/api/Vector2.java b/src/main/java/com/zontreck/libzontreck/api/Vector2.java new file mode 100644 index 0000000..425a11c --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/api/Vector2.java @@ -0,0 +1,138 @@ +package com.zontreck.libzontreck.api; + +import com.zontreck.libzontreck.vectors.Vector2f; +import com.zontreck.libzontreck.vectors.Vector2i; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec2; + +public interface Vector2 extends Cloneable, Comparable> +{ + /** + * Converts the current Vector2 representation into a minecraft Vec2 + * @return Minecraft equivalent Vec2 + */ + Vec2 asMinecraftVector(); + + /** + * Parses a string in serialized format. + * @param vector2 Expects it in the same format returned by Vector2#toString + * @return New Vector2, or a null Vector2 initialized with zeros if invalid data + */ + static Vector2 parseString(String vector2){ + throw new UnsupportedOperationException("This method is not implemented by this implementation"); + } + + /** + * Copies the values to a new and detached instance + * @return New Vector2 + */ + Vector2 Clone(); + + /** + * Saves the X and Y positions to a NBT tag + * @return NBT compound tag + */ + CompoundTag serialize(); + + /** + * Loads a Vector2 from a NBT tag + * @param tag The NBT tag to load + */ + static Vector2 deserialize(CompoundTag tag) + { + throw new UnsupportedOperationException("This method is not implemented by this implementation"); + } + + /** + * Compares the two vector2 instances + * @param other The position to check + * @return True if same position + */ + boolean Same(Vector2 other); + + /** + * True if the current position is inside the two points + * @param point1 Lowest point + * @param point2 Hightest Point + * @return True if inside + */ + boolean Inside(Vector2 point1, Vector2 point2); + + /** + * Converts, if necessary, to Vector2d + * @return A vector2d instance + */ + Vector2f asVector2f(); + + /** + * Converts, if necessary, to Vector2i + * @return A vector2i instance + */ + Vector2i asVector2i(); + + /** + * Checks if the current vector is greater than the provided one + * @param other The other vector to check + * @return True if greater + */ + boolean greater(Vector2 other); + + /** + * Checks if the current vector is less than the provided one + * @param other The vector to check + * @return True if less than other + */ + boolean less(Vector2 other); + + /** + * Alias for Vector2#same + * @param other Vector to check + * @return True if same position + */ + boolean equal(Vector2 other); + + /** + * Adds the two vectors together + * @param other Vector to add + * @return New instance after adding the other vector + */ + Vector2 add(Vector2 other); + + /** + * Subtracts the other vector from this one + * @param other Vector to subtract + * @return New instance after subtracting + */ + Vector2 subtract(Vector2 other); + + /** + * Calculates the distance between the two vectors + * @param other + * @return The distance + */ + double distance(Vector2 other); + + /** + * Increments the Y axis by 1 + * @return New instance + */ + Vector2 moveUp(); + + /** + * Decrements the Y axis by 1 + * @return New instance + */ + Vector2 moveDown(); + + /** + * Gets the X value + * @return X + */ + T getX(); + + /** + * Gets the Y value + * @return Y + */ + T getY(); +} diff --git a/src/main/java/com/zontreck/libzontreck/api/Vector3.java b/src/main/java/com/zontreck/libzontreck/api/Vector3.java new file mode 100644 index 0000000..ce54a10 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/api/Vector3.java @@ -0,0 +1,158 @@ +package com.zontreck.libzontreck.api; + +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.Vector3i; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Vec3i; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec3; + +public interface Vector3 extends Cloneable, Comparable> +{ + /** + * Converts the current Vector3 representation into a minecraft Vec3 + * @return Minecraft equivalent Vec3 + */ + Vec3 asMinecraftVector(); + + /** + * Converts to a vec3i position + * @return Equivalent vec3i + */ + Vec3i asVec3i(); + + /** + * Converts to a block position + * @return Equivalent block position + */ + BlockPos asBlockPos(); + + /** + * Parses a string in serialized format. + * @param vector3 Expects it in the same format returned by Vector3#toString + * @return New Vector3, or a null Vector3 initialized with zeros if invalid data + */ + static Vector3 parseString(String vector3){ + throw new UnsupportedOperationException("This method is not implemented by this implementation"); + } + + /** + * Copies the values to a new and detached instance + * @return New Vector3 + */ + Vector3 Clone(); + + /** + * Saves the X, Y, and Z positions to a NBT tag + * @return NBT compound tag + */ + CompoundTag serialize(); + + /** + * Loads a Vector3 from a NBT tag + * @param tag The NBT tag to load + */ + static Vector3 deserialize(CompoundTag tag) + { + throw new UnsupportedOperationException("This method is not implemented by this implementation"); + } + + /** + * Compares the two vector3 instances + * @param other The position to check + * @return True if same position + */ + boolean Same(Vector3 other); + + /** + * True if the current position is inside the two points + * @param point1 Lowest point + * @param point2 Hightest Point + * @return True if inside + */ + boolean Inside(Vector3 point1, Vector3 point2); + + /** + * Converts, if necessary, to Vector3d + * @return A vector2d instance + */ + Vector3d asVector3d(); + + /** + * Converts, if necessary, to Vector3i + * @return A vector3i instance + */ + Vector3i asVector3i(); + + /** + * Checks if the current vector is greater than the provided one + * @param other The other vector to check + * @return True if greater + */ + boolean greater(Vector3 other); + + /** + * Checks if the current vector is less than the provided one + * @param other The vector to check + * @return True if less than other + */ + boolean less(Vector3 other); + + /** + * Alias for Vector3#same + * @param other Vector to check + * @return True if same position + */ + boolean equal(Vector3 other); + + /** + * Adds the two vectors together + * @param other Vector to add + * @return New instance after adding the other vector + */ + Vector3 add(Vector3 other); + + /** + * Subtracts the other vector from this one + * @param other Vector to subtract + * @return New instance after subtracting + */ + Vector3 subtract(Vector3 other); + + /** + * Calculates the distance between the two vectors + * @param other + * @return The distance + */ + double distance(Vector3 other); + + /** + * Increments the Y axis by 1 + * @return New instance + */ + Vector3 moveUp(); + + /** + * Decrements the Y axis by 1 + * @return New instance + */ + Vector3 moveDown(); + + /** + * Gets the X value + * @return X + */ + T getX(); + + /** + * Gets the Y value + * @return Y + */ + T getY(); + + /** + * Gets the Z value + * @return Z + */ + T getZ(); +} diff --git a/src/main/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java b/src/main/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java new file mode 100644 index 0000000..0c025e9 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/blocks/BlockCustomVoxels.java @@ -0,0 +1,21 @@ +package com.zontreck.libzontreck.blocks; + +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; + +public class BlockCustomVoxels extends PartialTransparentBlock +{ + private VoxelShape superShape; + public BlockCustomVoxels(Properties p_54120_, VoxelShape shape) { + super(p_54120_); + this.superShape = shape; + } + + @Override + public VoxelShape getShape(BlockState p_60555_, BlockGetter p_60556_, BlockPos p_60557_, CollisionContext p_60558_) { + return superShape; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/blocks/BlockImitation.java b/src/main/java/com/zontreck/libzontreck/blocks/BlockImitation.java new file mode 100644 index 0000000..492a060 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/blocks/BlockImitation.java @@ -0,0 +1,95 @@ +package com.zontreck.libzontreck.blocks; + +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.util.RandomSource; +import net.minecraft.world.entity.Entity; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.biome.Biome; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; + +/** + * Code partially taken from HT's TreeChop + *

+ * This was heavily inspired by some of the ChestGUI's seen in Spigot mods. + * The reason for creating this system is to rapidly prototype interfaces. This is meant to be a helper to add a GUI quickly and easily without all the mess and fuss of making a menu or a screen. This is meant to be a stepping stone, not a permanent replacement to a proper UI. + *

+ * This implementation is unlikely to ever change much, as it is just meant to accomplish the above task, and it does, successfully. + */ +public class ChestGUI +{ + private ItemStackHandler container = new ItemStackHandler((9*3)); + private String MenuTitle = ""; + private UUID player; + public List buttons = new ArrayList<>(); + private ChestGUIIdentifier id; + private int page =0; + public boolean hasAdd = false; + public boolean hasReset = false; + public boolean hasRemove = false; + + private IChestGUIButtonCallback onAdd; + private IChestGUIButtonCallback onReset; + private IChestGUIButtonCallback onRemove; + + public ChestGUIButton addBtn = null; + public ChestGUIButton resetBtn = null; + public ChestGUIButton removeBtn = null; + + + + public ChestGUI withAdd(IChestGUIButtonCallback onAdd) + { + hasAdd=true; + this.onAdd=onAdd; + return this; + } + + public ChestGUI withReset(IChestGUIButtonCallback onReset) + { + hasReset = true; + this.onReset = onReset; + return this; + } + + private ChestGUI withRemove(IChestGUIButtonCallback onRemove) + { + hasRemove = true; + this.onRemove=onRemove; + return this; + } + public ChestGUI withButton(ChestGUIButton button) + { + if(buttons.size()>=2*9) + { + return this; + } + buttons.add(button); + button.withContainer(container); + container.setStackInSlot(button.getSlotNum(), button.buildIcon()); + + return this; + } + + + /* + X X X X X X X X X + X X X X X X X X X + 0 0 0 - @ + 0 0 0 + */ + + // LEGEND: + // X = ChestGUIButton + // 0 = Empty Slot + // - = Remove / Subtract + // @ = Reset / Refresh + // + = Add + + /** + * Updates the menu's utility buttons + */ + public void updateUtilityButtons() + { + + if(hasRemove) + { + ItemStack remStack = new ItemStack(ModItems.CHESTGUI_REM.get(), 1); + + ChestGUIButton rem = new ChestGUIButton(remStack, onRemove, new Vector2i(2, 3)); + rem.withContainer(container); + + removeBtn = rem; + + container.setStackInSlot(rem.getSlotNum(), rem.buildIcon()); + } + + if(hasReset) + { + ItemStack resStack = new ItemStack(ModItems.CHESTGUI_RESET.get(), 1); + + ChestGUIButton rem = new ChestGUIButton(resStack, onReset, new Vector2i(2, 4)); + rem.withContainer(container); + + resetBtn = rem; + + container.setStackInSlot(rem.getSlotNum(), rem.buildIcon()); + + } + + if(hasAdd) + { + + ItemStack remStack = new ItemStack(ModItems.CHESTGUI_ADD.get(), 1); + + ChestGUIButton rem = new ChestGUIButton(remStack, onAdd, new Vector2i(2, 5)); + rem.withContainer(container); + + addBtn = rem; + + container.setStackInSlot(rem.getSlotNum(), rem.buildIcon()); + } + } + + + public boolean isFirstPage() { + return page == 0; + } + + public boolean isLastPage() { + int maxPerPage = 2 * 9; + int totalButtons = buttons.size(); + int totalPages = (totalButtons - 1) / maxPerPage; + + return page >= totalPages; + } + + + /** + * Checks if the number of buttons warrants adding the next/previous buttons to the utility row + * @return True if the number of buttons exceeds (2*9) + */ + public boolean hasMultiPage() + { + return (buttons.size() > (2*9)); + } + + public ChestGUI withTitle(String title) + { + MenuTitle = title; + + return this; + } + + public static ChestGUI builder() + { + return new ChestGUI(); + } + + public ChestGUI withPlayer(UUID id) + { + player=id; + return this; + } + + /** + * Open the GUI on the client + */ + public void open() + { + if(LibZontreck.CURRENT_SIDE == LogicalSide.SERVER) + { + updateUtilityButtons(); + MinecraftForge.EVENT_BUS.post(new OpenGUIEvent(id, player, this)); + NetworkHooks.openScreen(ServerUtilities.getPlayerByID(player.toString()), new SimpleMenuProvider(ChestGUIMenu.getServerMenu(this), ChatHelpers.macro((MenuTitle != "") ? MenuTitle : "No Title"))); + } + } + + /** + * Send a signal to trigger the GUI to close on the server, then send a signal to the client to also close the interface + */ + public void close() + { + if(LibZontreck.CURRENT_SIDE == LogicalSide.SERVER) + { + MinecraftForge.EVENT_BUS.post(new CloseGUIEvent(this, ServerUtilities.getPlayerByID(player.toString()))); + + ModMessages.sendToPlayer(new S2CCloseChestGUI(), ServerUtilities.getPlayerByID(player.toString())); + } + } + + public boolean isPlayer(UUID ID) + { + return player.equals(ID); + } + + public ChestGUI withGUIId(ChestGUIIdentifier id) + { + this.id = id; + return this; + } + + public boolean matches(ChestGUIIdentifier id) + { + return this.id.equals(id); + } + + public void handleButtonClicked(int slot, Vector2f pos, Item item) { + for(ChestGUIButton button : buttons) + { + if(button.getSlotNum() == slot) + { + if(button.buildIcon().getItem() == item) + { + button.clicked(); + return; + } + } + } + } + + public boolean hasSlot(Vector2i slot) + { + for(ChestGUIButton btn : buttons) + { + if(btn.matchesSlot(slot)) + { + return true; + } + } + + return false; + } + + public ChestGUIButton getSlot(Vector2i slot) { + if(hasSlot(slot)) + { + for(ChestGUIButton btn : buttons) + { + if(btn.matchesSlot(slot)) + { + return btn; + } + } + } + return null; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java new file mode 100644 index 0000000..0e69d08 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIButton.java @@ -0,0 +1,170 @@ +package com.zontreck.libzontreck.chestgui; + +import com.zontreck.libzontreck.lore.LoreContainer; +import com.zontreck.libzontreck.lore.LoreEntry; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.vectors.Vector2i; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.items.ItemStackHandler; + +import java.time.Instant; +import java.util.ArrayList; +import java.util.List; + +public class ChestGUIButton +{ + private Item icon; + private String name; + private List tooltipInfo = new ArrayList<>(); + + private IChestGUIButtonCallback callback; + private CompoundTag NBT = new CompoundTag(); + + /** + * Position is Row (X), Column (Y) + */ + private Vector2i position; + private ItemStack built; + private ItemStackHandler container; + private LoreContainer lore; + + /** + * Sets the name of the ChestGUI Button (Item Name) + * @param name Name to set + * @return Button instance + */ + public ChestGUIButton withName(String name) + { + this.name=name; + return this; + } + + + public ChestGUIButton(Item icon, String name, IChestGUIButtonCallback callback, Vector2i position) + { + this.icon = icon; + this.name = name; + this.callback = callback; + this.position = position; + tooltipInfo = new ArrayList<>(); + } + + public ChestGUIButton(ItemStack existing, IChestGUIButtonCallback callback, Vector2i position) + { + this.callback = callback; + this.position = position; + + LoreContainer container = new LoreContainer(existing); + tooltipInfo = container.miscData.loreData; + name = existing.getHoverName().getString(); + icon = existing.getItem(); + NBT = existing.getTag(); + + } + + public ChestGUIButton withNBT(CompoundTag tag) + { + this.NBT = tag; + return this; + } + + public ItemStack buildIcon() + { + ItemStack ret = new ItemStack(icon,1); + + + NBT.putInt("slot", getSlotNum()); + NBT.put("pos", position.serialize()); + + ret.setTag(NBT); + LoreContainer cont = new LoreContainer(ret); + cont.clear(); + + cont.miscData.loreData.addAll(tooltipInfo); + + cont.commitLore(); + + + ret = ret.setHoverName(ChatHelpers.macro(name)); + built=ret; + lore=cont; + + return ret; + } + + public ItemStackHandler buildIconStack() + { + ItemStack stack = buildIcon(); + ItemStackHandler st = new ItemStackHandler(1); + st.setStackInSlot(0, stack); + + built=stack; + lore = new LoreContainer(built); + return st; + } + + protected ChestGUIButton withContainer(ItemStackHandler handler) + { + this.container=handler; + return this; + } + + /** + * Adds a line to the Lore (Tooltip) of the button + * @param line The line to add + * @return ChestGUIButton instance + */ + public ChestGUIButton withInfo(LoreEntry line) + { + tooltipInfo.add(line); + + return this; + } + + /** + * Sets the position and returns the builder + * @param pos New button position + * @return This button instance + */ + public ChestGUIButton withPosition(Vector2i pos) + { + this.position=pos; + + return this; + } + + /** + * Check if the slot's row and column match (X,Y) + * @param slot + * @return True if matches + */ + public boolean matchesSlot(Vector2i slot) + { + return position.Same(slot); + } + + /** + * Returns the slot number in the 32 item grid + * @return Slot number from vector (row, column) + */ + public int getSlotNum() + { + return (int) Math.floor((position.x * 9) + position.y); + } + + private static long lastInvoked = 0; + /** + * Button was clicked! + */ + public void clicked() + { + if(Instant.now().getEpochSecond() > (lastInvoked + 1)) + { + + lastInvoked = Instant.now().getEpochSecond(); + callback.run(built, container, lore); + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java new file mode 100644 index 0000000..b287cf5 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIIdentifier.java @@ -0,0 +1,62 @@ +package com.zontreck.libzontreck.chestgui; + +import net.minecraft.nbt.CompoundTag; + +import java.util.Objects; +import java.util.UUID; + +/** + * As of revision 0121, this is now used in place of ResourceLocation. This gives more flexibility without the restrictions imposed on naming of ResourceLocations + */ +public class ChestGUIIdentifier +{ + public UUID ID; + public String nickname; + + /** + * Default constructor. Generates a random UUID! + * @param nick GUI nickname + */ + public ChestGUIIdentifier(String nick) + { + ID = UUID.randomUUID(); + nickname=nick; + } + + /** + * Serialize out the identifier for transmitting over the network, or saving to disk + * @return + */ + public CompoundTag serialize() + { + CompoundTag ret = new CompoundTag(); + ret.putUUID("id", ID); + ret.putString("name", nickname); + + return ret; + } + + /** + * Deserialize the identifier + * @param tag + */ + public ChestGUIIdentifier(CompoundTag tag) + { + ID = tag.getUUID("id"); + nickname = tag.getString("name"); + } + + + @Override + public boolean equals(Object o) { + if (this == o) return true; + if (o == null || getClass() != o.getClass()) return false; + ChestGUIIdentifier that = (ChestGUIIdentifier) o; + return Objects.equals(ID, that.ID) && Objects.equals(nickname, that.nickname); + } + + @Override + public int hashCode() { + return Objects.hash(ID, nickname); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java new file mode 100644 index 0000000..f6f3890 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUIRegistry.java @@ -0,0 +1,33 @@ +package com.zontreck.libzontreck.chestgui; + +import com.zontreck.libzontreck.events.CloseGUIEvent; +import com.zontreck.libzontreck.events.OpenGUIEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +public class ChestGUIRegistry +{ + private static Map GUIS = new HashMap<>(); + + + @SubscribeEvent + public static void onGuiOpen(final OpenGUIEvent event) + { + GUIS.put(event.getPlayer().getUUID(), event.getGui()); + } + + @SubscribeEvent + public static void onGuiClose(final CloseGUIEvent event) + { + GUIS.remove(event.player.getUUID()); + } + + public static ChestGUI get(UUID ID) + { + if(GUIS.containsKey(ID)) return GUIS.get(ID); + return null; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java b/src/main/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java new file mode 100644 index 0000000..b8d2031 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chestgui/IChestGUIButtonCallback.java @@ -0,0 +1,20 @@ +package com.zontreck.libzontreck.chestgui; + +import com.zontreck.libzontreck.lore.LoreContainer; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.items.ItemStackHandler; + +/** + * This should be used in place of Runnable for ChestGUI + */ +@FunctionalInterface +public interface IChestGUIButtonCallback +{ + /** + * A callback function that when invoked will pass the ChestGUI ItemStack + * @param stack A temporary itemstack that is used for the ChestGUI + * @param container The container object for manipulating other items when this is invoked + * @param lore The lore's container instance + */ + void run(ItemStack stack, ItemStackHandler container, LoreContainer lore); +} diff --git a/src/main/java/com/zontreck/libzontreck/commands/Commands.java b/src/main/java/com/zontreck/libzontreck/commands/Commands.java new file mode 100644 index 0000000..3e0ce5e --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/commands/Commands.java @@ -0,0 +1,17 @@ +package com.zontreck.libzontreck.commands; + +import com.zontreck.libzontreck.LibZontreck; +import net.minecraftforge.event.RegisterCommandsEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; +import net.minecraftforge.fml.common.Mod.EventBusSubscriber; + +@EventBusSubscriber(modid=LibZontreck.MOD_ID, bus=Mod.EventBusSubscriber.Bus.FORGE) +public class Commands { + @SubscribeEvent + public void onCommandsRegister(RegisterCommandsEvent ev) + { + CreditsCommand.register(ev.getDispatcher()); + //GetHead.register(ev.getDispatcher()); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/commands/CreditsCommand.java b/src/main/java/com/zontreck/libzontreck/commands/CreditsCommand.java new file mode 100644 index 0000000..695d0b2 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/commands/CreditsCommand.java @@ -0,0 +1,55 @@ +package com.zontreck.libzontreck.commands; + +import com.mojang.brigadier.CommandDispatcher; + + +import com.zontreck.libzontreck.chestgui.ChestGUI; +import com.zontreck.libzontreck.chestgui.ChestGUIButton; +import com.zontreck.libzontreck.chestgui.ChestGUIIdentifier; +import com.zontreck.libzontreck.util.heads.CreditsEntry; +import com.zontreck.libzontreck.util.heads.HeadCache; +import com.zontreck.libzontreck.vectors.Vector2i; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.world.entity.player.Player; + +public class CreditsCommand { + public static void register(CommandDispatcher dispatch) + { + dispatch.register(Commands.literal("credits_ariasmods").executes(s->credits(s.getSource()))); + } + + private static int credits(CommandSourceStack source) { + // Open the credits GUI + if(source.getEntity() instanceof Player) + { + // OK. + ChestGUI gui = ChestGUI.builder().withGUIId(new ChestGUIIdentifier("creditsgui")).withPlayer(source.getEntity().getUUID()).withTitle("Aria's Mods - Credits"); + + int x = 0; + int y = 0; + for(CreditsEntry entry : HeadCache.CREDITS) + { + gui = gui.withButton(new ChestGUIButton(entry.compile(), (stack, container, lore)->{ + }, new Vector2i(x,y))); + + //LibZontreck.LOGGER.info("Add gui button : " + entry.name); + + y++; + if(y>=9) + { + x++; + y=0; + } + } + + gui.open(); + + + + return 0; + }else return 1; + } + + +} diff --git a/src/main/java/com/zontreck/libzontreck/commands/GetHead.java b/src/main/java/com/zontreck/libzontreck/commands/GetHead.java new file mode 100644 index 0000000..c6d1d44 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/commands/GetHead.java @@ -0,0 +1,34 @@ +package com.zontreck.libzontreck.commands; + +import com.mojang.brigadier.CommandDispatcher; +import com.mojang.brigadier.arguments.StringArgumentType; +import com.mojang.brigadier.exceptions.CommandSyntaxException; + +import com.zontreck.libzontreck.util.heads.HeadUtilities; +import net.minecraft.commands.CommandSourceStack; +import net.minecraft.commands.Commands; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.item.ItemStack; + +public class GetHead { + public static void register(CommandDispatcher dispatch) + { + dispatch.register(Commands.literal("aria_debug_get_head").executes(c-> getHead(c.getSource(), c.getSource().getEntity().getName().getString())).then(Commands.argument("name", StringArgumentType.string()).executes(c -> getHead(c.getSource(), StringArgumentType.getString(c, "name"))))); + + } + + private static int getHead(CommandSourceStack source, String string) { + try { + ServerPlayer player= source.getPlayerOrException(); + ItemStack head = HeadUtilities.get(string, ""); + + player.addItem(head); + } catch (CommandSyntaxException e) { + e.printStackTrace(); + } + + + return 0; + } + +} diff --git a/src/main/java/com/zontreck/libzontreck/config/ServerConfig.java b/src/main/java/com/zontreck/libzontreck/config/ServerConfig.java new file mode 100644 index 0000000..471f876 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/config/ServerConfig.java @@ -0,0 +1,39 @@ +package com.zontreck.libzontreck.config; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.config.sections.DatabaseSection; +import com.zontreck.libzontreck.util.SNbtIo; +import net.minecraft.nbt.CompoundTag; + +import java.nio.file.Path; + +public class ServerConfig +{ + public static final Path BASE = LibZontreck.BASE_CONFIG.resolve("server.snbt"); + + public static DatabaseSection database; + + public static void init() + { + if(BASE.toFile().exists()) + { + var config = SNbtIo.loadSnbt(BASE); + + database = DatabaseSection.deserialize(config.getCompound(DatabaseSection.TAG_NAME)); + + commit(); + } else { + database = new DatabaseSection(); + + commit(); + } + } + + public static void commit() + { + CompoundTag tag = new CompoundTag(); + tag.put(DatabaseSection.TAG_NAME, database.serialize()); + + SNbtIo.writeSnbt(BASE, tag); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java b/src/main/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java new file mode 100644 index 0000000..b897f0f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/config/sections/DatabaseSection.java @@ -0,0 +1,75 @@ +package com.zontreck.libzontreck.config.sections; + +import net.minecraft.nbt.CompoundTag; + +public class DatabaseSection +{ + public static final String TAG_NAME = "database"; + public static final String TAG_USER = "username"; + public static final String TAG_PASSWORD = "password"; + public static final String TAG_HOST = "host"; + public static final String TAG_DATABASE = "database"; + public static final String TAG_VERSION = "rev"; + + + public String user = "root"; + public String password = ""; + public String host = "localhost:3306"; // IP:port + public String database = ""; + public int version; + + public static final int VERSION = 1; + + public static DatabaseSection deserialize(CompoundTag tag) + { + DatabaseSection ret = new DatabaseSection(); + ret.version = tag.getInt(TAG_VERSION); + + if(ret.version == 0) + { + ret.version = VERSION; + return ret; + } + + if(ret.version >= 1) + { + ret.user = tag.getString(TAG_USER); + ret.password = tag.getString(TAG_PASSWORD); + ret.host = tag.getString(TAG_HOST); + ret.database = tag.getString(TAG_DATABASE); + } + + + ret.version = VERSION; + return ret; + } + + public DatabaseSection(){ + + } + + public DatabaseSection(String user, String password, String host, String database) + { + this.user = user; + this.password = password; + this.host = host; + this.database = database; + } + + public String getAsSQLFileName() + { + return database + ".sql"; + } + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putString(TAG_USER, user); + tag.putString(TAG_PASSWORD, password); + tag.putString(TAG_HOST, host); + tag.putString(TAG_DATABASE, database); + tag.putInt(TAG_VERSION, version); + + return tag; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/Account.java b/src/main/java/com/zontreck/libzontreck/currency/Account.java new file mode 100644 index 0000000..e9c27cb --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/Account.java @@ -0,0 +1,108 @@ +package com.zontreck.libzontreck.currency; + + +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.currency.events.TransactionHistoryFlushEvent; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.NbtUtils; +import net.minecraft.nbt.Tag; +import net.minecraftforge.common.MinecraftForge; + +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +public class Account +{ + public UUID player_id; + public List history; + public int balance; + + public String accountName = ""; + public boolean isPlayer=true; + + public AccountReference getRef() + { + return new AccountReference(player_id); + } + + protected Account(UUID ID) + { + player_id=ID; + history=new ArrayList<>(); + balance=0; + if(isValidPlayer()) { + try { + Profile prof = Profile.get_profile_of(ID.toString()); + accountName = prof.name_color + prof.nickname; + isPlayer=true; + } catch (UserProfileNotYetExistsException e) { + accountName = ChatColor.doColors("!Dark_Red!SYSTEM!White!"); + isPlayer=false; + } + + } else { + accountName = ChatColor.doColors("!Dark_Red!SYSTEM!White!"); + isPlayer=false; + } + } + + public CompoundTag save() + { + CompoundTag tag = new CompoundTag(); + tag.put("id", NbtUtils.createUUID(player_id)); + tag.putInt("balance", balance); + ListTag txs = new ListTag(); + for(Transaction tx : history) + { + txs.add(tx.save()); + } + + tag.put("history", txs); + tag.putString("name", accountName); + tag.putBoolean("player", isPlayer); + + return tag; + } + + public Account(CompoundTag tag) + { + player_id = NbtUtils.loadUUID(tag.get("id")); + balance = tag.getInt("balance"); + accountName = tag.getString("name"); + isPlayer = tag.getBoolean("player"); + history=new ArrayList<>(); + ListTag lst = tag.getList("history", Tag.TAG_COMPOUND); + for(Tag t : lst){ + CompoundTag lTag = (CompoundTag) t; + history.add(new Transaction(lTag)); + } + } + + /** + * Internal function for use only by the garbage collector to reduce memory footprint. Maximum of 20 transactions will be retained in the memory + * + * When the TX history grows beyond 20, the history should clear and it should get transferred to the long-term tx history storage. That file is not retained in memory, and only gets loaded when clearing to merge the lists. It is immediately saved and unloaded + * @see LongTermTransactionHistoryRecord + */ + public void flushTxHistory() { + LongTermTransactionHistoryRecord rec = LongTermTransactionHistoryRecord.of(player_id); + rec.addHistory(history); + rec.commit(); + MinecraftForge.EVENT_BUS.post(new TransactionHistoryFlushEvent(this, rec, history)); + rec = null; + history = new ArrayList<>(); + } + + /** + * Checks if the account is a player or system account + * @return True if the player has a valid UUID + */ + public boolean isValidPlayer() + { + return isPlayer; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/AccountReference.java b/src/main/java/com/zontreck/libzontreck/currency/AccountReference.java new file mode 100644 index 0000000..5e996f0 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/AccountReference.java @@ -0,0 +1,17 @@ +package com.zontreck.libzontreck.currency; + +import java.util.UUID; + +public class AccountReference +{ + public UUID id; + public Account get() + { + return Bank.getAccount(id); + } + + protected AccountReference(UUID ID) + { + id=ID; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/Bank.java b/src/main/java/com/zontreck/libzontreck/currency/Bank.java new file mode 100644 index 0000000..d9e6204 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/Bank.java @@ -0,0 +1,242 @@ +package com.zontreck.libzontreck.currency; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.currency.events.BankAccountCreatedEvent; +import com.zontreck.libzontreck.currency.events.BankReadyEvent; +import com.zontreck.libzontreck.currency.events.TransactionEvent; +import com.zontreck.libzontreck.currency.events.WalletUpdatedEvent; +import com.zontreck.libzontreck.exceptions.InvalidSideException; +import com.zontreck.libzontreck.networking.ModMessages; +import com.zontreck.libzontreck.networking.packets.S2CWalletUpdatedPacket; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.NbtIo; +import net.minecraft.nbt.Tag; +import net.minecraft.server.MinecraftServer; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.server.ServerLifecycleHooks; + +import java.io.IOException; +import java.lang.reflect.InvocationTargetException; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; +import java.util.stream.Collectors; + +/** + * SERVER-SIDE ONLY + */ +public class Bank +{ + public static final Path BANK_DATA; + public static Account SYSTEM; + + public static final UUID SYSTEM_ACCOUNT_ID; + + static { + SYSTEM_ACCOUNT_ID = new UUID(0x9fc8, 0x829fcc); + BANK_DATA = LibZontreck.BASE_CONFIG.resolve("bank.nbt"); + } + + private Bank(){ + if(ServerUtilities.isServer()) + load(); + else { + if(BANK_DATA.toFile().exists()) + BANK_DATA.toFile().delete(); + + return; + } + + SYSTEM = getAccount(SYSTEM_ACCOUNT_ID); + if(SYSTEM == null) + { + makeAccount(SYSTEM_ACCOUNT_ID); + SYSTEM=getAccount(SYSTEM_ACCOUNT_ID); + + SYSTEM.balance = 0xFFFFFF; + instance.commit(); + } + } + + /** + * Internal function to deserialize NBT + */ + private void load() + { + try { + CompoundTag data = NbtIo.read(BANK_DATA.toFile()); + accounts=new ArrayList<>(); + ListTag acts = data.getList("accounts", Tag.TAG_COMPOUND); + for(Tag t : acts) + { + accounts.add(new Account((CompoundTag) t)); + } + + MinecraftForge.EVENT_BUS.post(new BankReadyEvent()); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + /** + * Do not use manually, this saves the bank data to disk. This is fired automatically when transactions are posted to accounts. + */ + public void commit() + { + CompoundTag tag = new CompoundTag(); + ListTag lst = new ListTag(); + for(Account act : accounts) + { + lst.add(act.save()); + } + tag.put("accounts", lst); + + try { + NbtIo.write(tag, BANK_DATA.toFile()); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + + private static final Bank instance = new Bank(); + + public List accounts = new ArrayList<>(); + + public static Account getAccount(UUID ID) + { + if(!hasAccount(ID))return null; + return instance.accounts.stream().filter(c->c.player_id.equals(ID)).collect(Collectors.toList()).get(0); + } + + public static boolean hasAccount(UUID ID) + { + return instance.accounts.stream().filter(c->c.player_id.equals(ID)).collect(Collectors.toList()).stream().count()>0; + } + + public static void makeAccount(UUID ID) + { + if(!hasAccount(ID)){ + instance.accounts.add(new Account(ID)); + + instance.commit(); + MinecraftForge.EVENT_BUS.post(new BankAccountCreatedEvent(getAccount(ID))); + }else { + } + } + + /** + * Attempts to post a transaction and perform the money transfer + * + * Please post your reason to the Reasons list when cancelling. + * @param tx The transaction being attempted + * @return True if the transaction has been accepted. False if the transaction was rejected, or insufficient funds. + */ + protected static boolean postTx(Transaction tx) throws InvalidSideException, InvocationTargetException, IllegalAccessException { + if(ServerUtilities.isClient())return false; + TransactionEvent ev = new TransactionEvent(tx); + + MinecraftServer server = ServerLifecycleHooks.getCurrentServer(); + + if(MinecraftForge.EVENT_BUS.post(ev)) + { + // Send the list of reasons to the user + String reasonStr = String.join("\n", ev.reasons); + + Account from = ev.tx.from.get(); + Account to = ev.tx.to.get(); + + + if(from.isValidPlayer()) + { + ChatHelpers.broadcastTo(from.player_id, ChatHelpers.macro("!Dark_Gray![!Dark_Blue!Bank!Dark_Gray!] !Dark_Red!The transaction could not be completed because of the following reasons: " + reasonStr), server); + } + if(to.isValidPlayer()) + { + ChatHelpers.broadcastTo(to.player_id, ChatHelpers.macro("!Dark_Gray![!Dark_Blue!Bank!Dark_Gray!] !Dark_Red!The transaction could not be completed because of the following reasons: " + reasonStr), server); + } + + return false; + }else { + // Tx accepted + // Process funds now + Account from = ev.tx.from.get(); + Account to = ev.tx.to.get(); + int fromOld = from.balance; + int toOld = to.balance; + from.balance -= tx.amount; + to.balance += tx.amount; + + from.history.add(tx); + to.history.add(tx); + + Profile toProf = null; + Profile fromProf = null; + try{ + fromProf = Profile.get_profile_of(from.player_id.toString()); + }catch(UserProfileNotYetExistsException e){ + e.printStackTrace(); + } + try { + toProf = Profile.get_profile_of(to.player_id.toString()); + } catch (UserProfileNotYetExistsException e) { + e.printStackTrace(); + } + + if(!from.isValidPlayer()) + { + fromProf = Profile.SYSTEM; + } + + if(!to.isValidPlayer()) + { + toProf = Profile.SYSTEM; + } + + if(from.isValidPlayer()) + ChatHelpers.broadcastTo(from.player_id, ChatHelpers.macro("!Dark_Gray![!Dark_Blue!Bank!Dark_Gray!] !Dark_Green!You sent !White!${0} !Dark_green!to {1}", String.valueOf(tx.amount), toProf.name_color+toProf.nickname), server); + + if(to.isValidPlayer()) + ChatHelpers.broadcastTo(from.player_id, ChatHelpers.macro("!Dark_Gray![!Dark_Blue!Bank!Dark_Gray!] {0} !Dark_Green!paid you ${1}", String.valueOf(tx.amount), toProf.name_color+toProf.nickname), server); + + if(to.isValidPlayer() && ServerUtilities.playerIsOffline(to.player_id)) Profile.unload(toProf); + if(from.isValidPlayer() && ServerUtilities.playerIsOffline(from.player_id)) + Profile.unload(fromProf); + + + MinecraftForge.EVENT_BUS.post(new WalletUpdatedEvent(from.player_id, fromOld, from.balance, tx)); + + MinecraftForge.EVENT_BUS.post(new WalletUpdatedEvent(to.player_id, toOld, to.balance, tx)); + + if(from.isValidPlayer() && !ServerUtilities.playerIsOffline(from.player_id)) + { + ModMessages.sendToPlayer(new S2CWalletUpdatedPacket(from.player_id, tx, from.balance, fromOld), ServerUtilities.getPlayerByID(from.player_id.toString())); + } + if(to.isValidPlayer() && !ServerUtilities.playerIsOffline(to.player_id)) + { + ModMessages.sendToPlayer(new S2CWalletUpdatedPacket(to.player_id, tx, to.balance, toOld), ServerUtilities.getPlayerByID(to.player_id.toString())); + } + + instance.commit(); + + } + return true; + + } + + /** + * This event is fired when wallets get updated. It cannot be cancelled + * @param ev The event containing the player ID and new+old wallet data + */ + @SubscribeEvent + public static void onWalletUpdate(WalletUpdatedEvent ev) + { + + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/CurrencyHelper.java b/src/main/java/com/zontreck/libzontreck/currency/CurrencyHelper.java new file mode 100644 index 0000000..09485cc --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/CurrencyHelper.java @@ -0,0 +1,6 @@ +package com.zontreck.libzontreck.currency; + + +public class CurrencyHelper { + +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java b/src/main/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java new file mode 100644 index 0000000..7d27237 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/LongTermTransactionHistoryRecord.java @@ -0,0 +1,72 @@ +package com.zontreck.libzontreck.currency; + +import com.zontreck.libzontreck.LibZontreck; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.NbtIo; +import net.minecraft.nbt.Tag; + +import java.io.IOException; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +public class LongTermTransactionHistoryRecord +{ + public static final Path BASE; + static{ + BASE = LibZontreck.BASE_CONFIG.resolve("transaction_history"); + if(!BASE.toFile().exists()) + { + BASE.toFile().mkdir(); + } + } + public static Path ofPath(String name) + { + return BASE.resolve(name); + } + public void commit() + { + ListTag txs = new ListTag(); + for(Transaction tx : history) + { + txs.add(tx.save()); + } + CompoundTag tag = new CompoundTag(); + tag.put("history", txs); + try { + NbtIo.write(tag, ofPath(player_id.toString()+".nbt").toFile()); + + }catch(IOException e){} + } + public UUID player_id; + + public List history; + private LongTermTransactionHistoryRecord(UUID ID) + { + player_id=ID; + try { + CompoundTag tag = NbtIo.read(ofPath(ID.toString()+".nbt").toFile()); + ListTag hist = tag.getList("history", Tag.TAG_COMPOUND); + history = new ArrayList<>(); + for(Tag t : hist){ + history.add(new Transaction((CompoundTag) t)); + } + } catch (IOException e) { + history = new ArrayList<>(); + } + } + + public void addHistory(List other) + { + for (Transaction tx : other) + { + history.add(tx); + } + } + public static LongTermTransactionHistoryRecord of(UUID ID) + { + return new LongTermTransactionHistoryRecord(ID); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/Transaction.java b/src/main/java/com/zontreck/libzontreck/currency/Transaction.java new file mode 100644 index 0000000..dbbe11e --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/Transaction.java @@ -0,0 +1,55 @@ +package com.zontreck.libzontreck.currency; + +import com.zontreck.libzontreck.exceptions.InvalidSideException; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; + +import java.lang.reflect.InvocationTargetException; + +public class Transaction +{ + public AccountReference from; + public AccountReference to; + public int amount; + public long timestamp; + + + public CompoundTag save() + { + CompoundTag tag = new CompoundTag(); + tag.put("from", NbtUtils.createUUID(from.id)); + tag.put("to", NbtUtils.createUUID(to.id)); + tag.putInt("amount", amount); + tag.putLong("timestamp", timestamp); + + return tag; + } + + public Transaction(CompoundTag tag) + { + from = new AccountReference(NbtUtils.loadUUID(tag.get("from"))); + to = new AccountReference(NbtUtils.loadUUID(tag.get("to"))); + amount = tag.getInt("amount"); + timestamp = tag.getLong("timestamp"); + } + + public Transaction(Account from, Account to, int amount, long ts) + { + this.from = from.getRef(); + this.to = to.getRef(); + this.amount=amount; + timestamp = ts; + } + + /** + * Submits the transaction to the bank to be processed + * @return True if the transaction was successfully submitted. + */ + public boolean submit(){ + try { + return Bank.postTx(this); + } catch (InvalidSideException | InvocationTargetException | IllegalAccessException e) { + return false; + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java b/src/main/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java new file mode 100644 index 0000000..f833a20 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/events/BankAccountCreatedEvent.java @@ -0,0 +1,14 @@ +package com.zontreck.libzontreck.currency.events; + + +import com.zontreck.libzontreck.currency.Account; +import net.minecraftforge.eventbus.api.Event; + +public class BankAccountCreatedEvent extends Event +{ + public Account account; + public BankAccountCreatedEvent(Account act) + { + account=act; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java b/src/main/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java new file mode 100644 index 0000000..9e3ec6b --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/events/BankReadyEvent.java @@ -0,0 +1,15 @@ +package com.zontreck.libzontreck.currency.events; + + +import com.zontreck.libzontreck.currency.Bank; +import net.minecraftforge.eventbus.api.Event; + +/** + * Contains no information by itself, it only signals that the Bank is open for business + * + * @see Bank + */ +public class BankReadyEvent extends Event +{ + +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java b/src/main/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java new file mode 100644 index 0000000..a2c231d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/events/TransactionEvent.java @@ -0,0 +1,24 @@ +package com.zontreck.libzontreck.currency.events; + + +import com.zontreck.libzontreck.currency.Transaction; +import net.minecraftforge.eventbus.api.Cancelable; +import net.minecraftforge.eventbus.api.Event; + +import java.util.List; + +@Cancelable +public class TransactionEvent extends Event +{ + public Transaction tx; + + /** + * This is the list of reasons why a transaction was aborted or blocked + */ + public List reasons; + + public TransactionEvent(Transaction txNew) + { + tx=txNew; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java b/src/main/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java new file mode 100644 index 0000000..63a8449 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/events/TransactionHistoryFlushEvent.java @@ -0,0 +1,23 @@ +package com.zontreck.libzontreck.currency.events; + + +import com.zontreck.libzontreck.currency.Account; +import com.zontreck.libzontreck.currency.LongTermTransactionHistoryRecord; +import com.zontreck.libzontreck.currency.Transaction; +import net.minecraftforge.eventbus.api.Event; + +import java.util.List; + +public class TransactionHistoryFlushEvent extends Event +{ + public LongTermTransactionHistoryRecord txHistory; + public Account associatedAccount; + public List flushed; + + public TransactionHistoryFlushEvent(Account act, LongTermTransactionHistoryRecord txHistory, List flushed) + { + associatedAccount=act; + this.txHistory=txHistory; + this.flushed=flushed; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java b/src/main/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java new file mode 100644 index 0000000..d1e66a9 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/events/WalletSyncEvent.java @@ -0,0 +1,25 @@ +package com.zontreck.libzontreck.currency.events; + +import com.zontreck.libzontreck.currency.Account; +import com.zontreck.libzontreck.currency.Bank; +import net.minecraftforge.eventbus.api.Event; + +import java.util.UUID; + +/** + * This event is not cancellable!! + */ +public class WalletSyncEvent extends Event +{ + public Account walletInformation; + + public WalletSyncEvent(UUID player) + { + walletInformation = Bank.getAccount(player); + } + + public WalletSyncEvent(Account act) + { + walletInformation = act; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java b/src/main/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java new file mode 100644 index 0000000..3414bdb --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/currency/events/WalletUpdatedEvent.java @@ -0,0 +1,25 @@ +package com.zontreck.libzontreck.currency.events; + +import com.zontreck.libzontreck.currency.Transaction; +import net.minecraftforge.eventbus.api.Event; + +import java.util.UUID; + +/** + * This event is dispatched on both the Client and the Server + */ +public class WalletUpdatedEvent extends Event +{ + public int newBal; + public int oldBal; + public UUID player; + public Transaction tx; + + public WalletUpdatedEvent(UUID player, int old, int newBal, Transaction tx) + { + this.player = player; + this.oldBal = old; + this.newBal = newBal; + this.tx=tx; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java b/src/main/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java new file mode 100644 index 0000000..8967bb0 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/dynamicchest/ChestGUIReadOnlyStackHandler.java @@ -0,0 +1,82 @@ +package com.zontreck.libzontreck.dynamicchest; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.chestgui.ChestGUI; +import com.zontreck.libzontreck.chestgui.ChestGUIButton; +import com.zontreck.libzontreck.chestgui.ChestGUIRegistry; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.items.ItemStackHandler; +import org.jetbrains.annotations.NotNull; + +public class ChestGUIReadOnlyStackHandler extends ItemStackHandler +{ + private ChestGUI gui; + private Player player; + + public ChestGUIReadOnlyStackHandler(ChestGUI gui, Player player) + { + super((3*9)); + this.gui = gui; + this.player = player; + + + LibZontreck.LOGGER.info("Logical Side : " + LibZontreck.CURRENT_SIDE); + + if(gui!=null) + { + if(gui.buttons!=null) + { + LibZontreck.LOGGER.info("Generating chest gui button items"); + for(ChestGUIButton btn : gui.buttons) + { + setStackInSlot(btn.getSlotNum(), btn.buildIcon()); + } + + if(gui.hasAdd) + { + setStackInSlot(gui.addBtn.getSlotNum(), gui.addBtn.buildIcon()); + } + + if(gui.hasReset) + { + setStackInSlot(gui.resetBtn.getSlotNum(), gui.resetBtn.buildIcon()); + } + + if(gui.hasRemove) + { + setStackInSlot(gui.removeBtn.getSlotNum(), gui.removeBtn.buildIcon()); + } + + + } else LibZontreck.LOGGER.error("Gui Buttons list is null"); + } else LibZontreck.LOGGER.error("Gui is null!"); + } + + @Override + public int getSlots() { + return (3*9); + } + + @Override + public @NotNull ItemStack insertItem(int slot, @NotNull ItemStack stack, boolean simulate) { + return stack; + } + + @Override + public @NotNull ItemStack extractItem(int slot, int amount, boolean simulate) { + ChestGUI instance = ChestGUIRegistry.get(player.getUUID()); + if(instance==null)return ItemStack.EMPTY; + + + ChestGUIButton btn = instance.buttons.stream().filter(x->x.getSlotNum()==slot).findFirst().orElse(null); + + if(btn == null) return ItemStack.EMPTY; + + btn.clicked(); + + return ItemStack.EMPTY; + } + + +} diff --git a/src/main/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java b/src/main/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java new file mode 100644 index 0000000..08a3869 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/dynamicchest/ReadOnlyItemStackHandler.java @@ -0,0 +1,59 @@ +package com.zontreck.libzontreck.dynamicchest; + +import net.minecraft.core.NonNullList; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.items.ItemStackHandler; + +public class ReadOnlyItemStackHandler extends ItemStackHandler +{ + private final ItemStackHandler slot; + private Runnable onClick; + protected ReadOnlyItemStackHandler(ItemStackHandler item) + { + super(); + slot=item; + } + + public ReadOnlyItemStackHandler(ItemStackHandler item, Runnable onClick) + { + this(item); + this.onClick=onClick; + } + + @Override + public void setSize(int size) + { + stacks = NonNullList.withSize(size, ItemStack.EMPTY); + } + + @Override + public void setStackInSlot(int num, ItemStack stack) { + slot.setStackInSlot(num, stack); + } + + @Override + public int getSlots() { + return slot.getSlots(); + } + + @Override + public ItemStack getStackInSlot(int num) { + return slot.getStackInSlot(num); + } + + + @Override + public ItemStack insertItem(int slot, ItemStack stack, boolean simulate) { + return stack; + } + + @Override + public ItemStack extractItem(int num, int amount, boolean simulate) { + if(onClick != null){ + onClick.run(); + return ItemStack.EMPTY; + } + + return ItemStack.EMPTY; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java b/src/main/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java new file mode 100644 index 0000000..e904c15 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/BlockRestoreQueueRegistrationEvent.java @@ -0,0 +1,20 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.memory.world.BlockRestoreQueue; +import com.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.eventbus.api.Event; + +public class BlockRestoreQueueRegistrationEvent extends Event +{ + /** + * Registers the provided queue to be able to be ticked + * @param queue + */ + public void register(BlockRestoreQueue queue) + { + BlockRestoreQueueRegistry.addQueue(queue); + + MinecraftForge.EVENT_BUS.register(queue); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/CloseGUIEvent.java b/src/main/java/com/zontreck/libzontreck/events/CloseGUIEvent.java new file mode 100644 index 0000000..8f1f184 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/CloseGUIEvent.java @@ -0,0 +1,18 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.chestgui.ChestGUI; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.entity.player.Player; +import net.minecraftforge.eventbus.api.Event; + +public class CloseGUIEvent extends Event +{ + public ChestGUI gui; + public Player player; + + public CloseGUIEvent(ChestGUI gui, ServerPlayer player) + { + this.gui = gui; + this.player = player; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java b/src/main/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java new file mode 100644 index 0000000..be70ab6 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/ForgeEventHandlers.java @@ -0,0 +1,89 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.ariaslib.terminal.Task; +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.exceptions.InvalidSideException; +import com.zontreck.libzontreck.memory.player.PlayerContainer; +import com.zontreck.libzontreck.networking.packets.S2CServerAvailable; +import com.zontreck.libzontreck.profiles.Profile; +import com.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.entity.living.LivingEvent; +import net.minecraftforge.event.entity.player.PlayerEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; +import net.minecraftforge.fml.common.Mod; + +@Mod.EventBusSubscriber(bus=Mod.EventBusSubscriber.Bus.FORGE) +public class ForgeEventHandlers { + + @SubscribeEvent + public void onPlayerTick(LivingEvent.LivingTickEvent ev) + { + if(ServerUtilities.isClient()) return; + + if(ev.getEntity() instanceof ServerPlayer player) + { + PlayerContainer cont = LibZontreck.playerStorage.get(player.getUUID()); + + if(cont.player.positionChanged()) + { + cont.player.update(); + + PlayerChangedPositionEvent pcpe = new PlayerChangedPositionEvent(player, cont.player.position, cont.player.lastPosition); + MinecraftForge.EVENT_BUS.post(pcpe); + } + } + } + + @SubscribeEvent + public void onPlayerJoin(final PlayerEvent.PlayerLoggedInEvent ev) + { + if(ServerUtilities.isClient())return; + + ServerPlayer player = (ServerPlayer)ev.getEntity(); + Profile prof = Profile.factory(player); + ServerLevel level = player.getLevel(); + + MinecraftForge.EVENT_BUS.post(new ProfileLoadedEvent(prof, player, level)); + + Thread tx = new Thread(new Task("send-msg", true) { + @Override + public void run() { + // Check player wallet, then send wallet to client + //ModMessages.sendToPlayer(new S2CWalletInitialSyncPacket(player.getUUID()), player); + + S2CServerAvailable avail = new S2CServerAvailable(); + avail.send(player); + } + }); + tx.start(); + } + + @SubscribeEvent + public void onLeave(final PlayerEvent.PlayerLoggedOutEvent ev) + { + LibZontreck.LIBZONTRECK_SERVER_AVAILABLE=false; // Yes do this even on the client! + if(ServerUtilities.isClient()) return; + // Get player profile, send disconnect alert, then commit profile and remove it from memory + + try { + if(ServerUtilities.playerIsOffline(ev.getEntity().getUUID())) + { + + Profile px=null; + try { + px = Profile.get_profile_of(ev.getEntity().getStringUUID()); + Profile.unload(px); + } catch (UserProfileNotYetExistsException e) { + e.printStackTrace(); + } + } + } catch (InvalidSideException e) { + throw new RuntimeException(e); + } + + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java b/src/main/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java new file mode 100644 index 0000000..c6ec437 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/GUIButtonClickedEvent.java @@ -0,0 +1,21 @@ +package com.zontreck.libzontreck.events; + +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.eventbus.api.Event; + +import java.util.UUID; + +public class GUIButtonClickedEvent extends Event +{ + public ResourceLocation id; + public ItemStack stack; + public UUID player; + + public GUIButtonClickedEvent(ItemStack stack, ResourceLocation id, UUID player) + { + this.id = id; + this.stack = stack; + this.player = player; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/OpenGUIEvent.java b/src/main/java/com/zontreck/libzontreck/events/OpenGUIEvent.java new file mode 100644 index 0000000..6260321 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/OpenGUIEvent.java @@ -0,0 +1,37 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.chestgui.ChestGUI; +import com.zontreck.libzontreck.chestgui.ChestGUIIdentifier; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.eventbus.api.Event; + +import java.util.UUID; + +public class OpenGUIEvent extends Event +{ + private ChestGUIIdentifier GUIId; + private UUID playerID; + private final ChestGUI gui; + + public OpenGUIEvent(ChestGUIIdentifier ID, UUID player, ChestGUI gui) + { + GUIId = ID; + playerID = player; + this.gui = gui; + } + + public boolean matches(ChestGUIIdentifier id) + { + return GUIId.equals(id); + } + + public ServerPlayer getPlayer() + { + return ServerUtilities.getPlayerByID(playerID.toString()); + } + + public ChestGUI getGui() { + return gui; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java b/src/main/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java new file mode 100644 index 0000000..ddddd90 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/PlayerChangedPositionEvent.java @@ -0,0 +1,20 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.world.entity.player.Player; +import net.minecraftforge.eventbus.api.Event; + +public class PlayerChangedPositionEvent extends Event +{ + public Player player; + public WorldPosition position; + public WorldPosition lastPosition; + + + public PlayerChangedPositionEvent (Player current, WorldPosition pos, WorldPosition last) + { + player=current; + position=pos; + lastPosition=last; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java b/src/main/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java new file mode 100644 index 0000000..f0f3a8f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/ProfileCreatedEvent.java @@ -0,0 +1,13 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.profiles.Profile; +import net.minecraftforge.eventbus.api.Event; + +public class ProfileCreatedEvent extends Event +{ + public String playerID; + public ProfileCreatedEvent(Profile newProfile) + { + playerID = newProfile.user_id; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java b/src/main/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java new file mode 100644 index 0000000..fe7e6e0 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/ProfileLoadedEvent.java @@ -0,0 +1,19 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.profiles.Profile; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.eventbus.api.Event; + +public class ProfileLoadedEvent extends Event +{ + public Profile profile; + public ServerPlayer player; + public ServerLevel level; + public ProfileLoadedEvent(Profile prof, ServerPlayer player, ServerLevel level) + { + profile=prof; + this.player=player; + this.level=level; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java b/src/main/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java new file mode 100644 index 0000000..247bd58 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/ProfileSavingEvent.java @@ -0,0 +1,23 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.profiles.Profile; +import net.minecraft.nbt.CompoundTag; +import net.minecraftforge.eventbus.api.Event; + +/** + * This class is not cancelable. + * This event is fired while the profile is saving. It is used to acquire misc data. + * + * The only part of this that is modifiable at this stage of saving is the tag. + */ +public class ProfileSavingEvent extends Event +{ + public final Profile profile; + public CompoundTag tag; + + public ProfileSavingEvent(Profile profile, CompoundTag tag) + { + this.profile=profile; + this.tag=tag; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java b/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java new file mode 100644 index 0000000..bc576de --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadedEvent.java @@ -0,0 +1,12 @@ +package com.zontreck.libzontreck.events; + +import net.minecraftforge.eventbus.api.Event; + +public class ProfileUnloadedEvent extends Event +{ + public String user_id; + public ProfileUnloadedEvent(String id) + { + user_id=id; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java b/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java new file mode 100644 index 0000000..786ca73 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/ProfileUnloadingEvent.java @@ -0,0 +1,19 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.profiles.Profile; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.eventbus.api.Cancelable; +import net.minecraftforge.eventbus.api.Event; + +@Cancelable +public class ProfileUnloadingEvent extends Event +{ + public Profile profile; + public ServerPlayer player; + + public ProfileUnloadingEvent(Profile profile, ServerPlayer player) + { + this.profile=profile; + this.player=player; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java b/src/main/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java new file mode 100644 index 0000000..6e21438 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/RegisterMigrationsEvent.java @@ -0,0 +1,22 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.memory.world.DatabaseMigrations; +import net.minecraftforge.eventbus.api.Event; + +import java.util.ArrayList; +import java.util.List; + +public class RegisterMigrationsEvent extends Event +{ + private List migrations = new ArrayList<>(); + + public void register(DatabaseMigrations.Migration migration) + { + migrations.add(migration); + } + + public List getMigrations() + { + return new ArrayList<>(migrations); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/events/TeleportEvent.java b/src/main/java/com/zontreck/libzontreck/events/TeleportEvent.java new file mode 100644 index 0000000..9d43d00 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/events/TeleportEvent.java @@ -0,0 +1,32 @@ +package com.zontreck.libzontreck.events; + +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.eventbus.api.Cancelable; +import net.minecraftforge.eventbus.api.Event; + +/** + * This event should be cancelled if a Teleport Implementation is provided and handles the teleport + *
+ * The event not being cancelled should indicate that the sender should handle teleport themselves. + */ +@Cancelable +public class TeleportEvent extends Event +{ + WorldPosition position; + ServerPlayer player; + + public TeleportEvent(WorldPosition position, ServerPlayer player) + { + this.position=position; + this.player=player; + } + + public ServerPlayer getPlayer() { + return player; + } + + public WorldPosition getPosition() { + return position; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/exceptions/InvalidDeserialization.java b/src/main/java/com/zontreck/libzontreck/exceptions/InvalidDeserialization.java new file mode 100644 index 0000000..9c93b9c --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/exceptions/InvalidDeserialization.java @@ -0,0 +1,12 @@ +package com.zontreck.libzontreck.exceptions; + +public class InvalidDeserialization extends Exception +{ + + public InvalidDeserialization(String error){ + super(error); + } + public InvalidDeserialization(){ + super("Incorrect information was provided to the deserializer"); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/exceptions/InvalidSideException.java b/src/main/java/com/zontreck/libzontreck/exceptions/InvalidSideException.java new file mode 100644 index 0000000..1794f73 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/exceptions/InvalidSideException.java @@ -0,0 +1,11 @@ +package com.zontreck.libzontreck.exceptions; + +/** + * Thrown when requesting a world position's level on the client when in the wrong dimension. + */ +public class InvalidSideException extends Exception +{ + public InvalidSideException(String msg){ + super(msg); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/items/InputItemStackHandler.java b/src/main/java/com/zontreck/libzontreck/items/InputItemStackHandler.java new file mode 100644 index 0000000..4639e2c --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/items/InputItemStackHandler.java @@ -0,0 +1,47 @@ +package com.zontreck.libzontreck.items; + +import net.minecraft.core.NonNullList; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.items.ItemStackHandler; + +public class InputItemStackHandler extends ItemStackHandler { + private final ItemStackHandler internalSlot; + + public InputItemStackHandler(ItemStackHandler hidden) { + super(); + internalSlot = hidden; + } + + @Override + public void setSize(int size) { + stacks = NonNullList.withSize(size, ItemStack.EMPTY); + } + + @Override + public void setStackInSlot(int slot, ItemStack stack) { + internalSlot.setStackInSlot(slot, stack); + } + + @Override + public int getSlots() { + return internalSlot.getSlots(); + } + + @Override + public ItemStack getStackInSlot(int slot) { + return internalSlot.getStackInSlot(slot); + } + + @Override + public ItemStack insertItem(int slot, ItemStack stack, boolean simulate) { + setStackInSlot(slot, stack); + + return ItemStack.EMPTY; + } + + @Override + public ItemStack extractItem(int slot, int amount, boolean simulate) { + return ItemStack.EMPTY; + } +} + diff --git a/src/main/java/com/zontreck/libzontreck/items/ModItems.java b/src/main/java/com/zontreck/libzontreck/items/ModItems.java new file mode 100644 index 0000000..c85641d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/items/ModItems.java @@ -0,0 +1,29 @@ +package com.zontreck.libzontreck.items; + +import com.zontreck.libzontreck.LibZontreck; +import net.minecraft.world.item.Item; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class ModItems +{ + public static final DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.ITEMS, LibZontreck.MOD_ID); + + public static final RegistryObject CHESTGUI_ADD = REGISTRY.register("chestgui_add", ()->new Item(new Item.Properties())); + + public static final RegistryObject CHESTGUI_REM = REGISTRY.register("chestgui_remove", ()->new Item(new Item.Properties())); + + public static final RegistryObject CHESTGUI_BACK = REGISTRY.register("chestgui_back", ()->new Item(new Item.Properties())); + + public static final RegistryObject CHESTGUI_RESET = REGISTRY.register("chestgui_reset", ()->new Item(new Item.Properties())); + + public static final RegistryObject CHESTGUI_FORWARD = REGISTRY.register("chestgui_forward", ()->new Item(new Item.Properties())); + + + public static void register(IEventBus bus) + { + REGISTRY.register(bus); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java b/src/main/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java new file mode 100644 index 0000000..35012b7 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/items/OutputItemStackHandler.java @@ -0,0 +1,45 @@ +package com.zontreck.libzontreck.items; + +import net.minecraft.core.NonNullList; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.items.ItemStackHandler; + +public class OutputItemStackHandler extends ItemStackHandler { + private final ItemStackHandler internalSlot; + + public OutputItemStackHandler(ItemStackHandler hidden) { + super(); + internalSlot = hidden; + } + + @Override + public void setSize(int size) { + stacks = NonNullList.withSize(size, ItemStack.EMPTY); + } + + @Override + public void setStackInSlot(int slot, ItemStack stack) { + internalSlot.setStackInSlot(slot, stack); + } + + @Override + public int getSlots() { + return internalSlot.getSlots(); + } + + @Override + public ItemStack getStackInSlot(int slot) { + return internalSlot.getStackInSlot(slot); + } + + @Override + public ItemStack insertItem(int slot, ItemStack stack, boolean simulate) { + return stack; + } + + @Override + public ItemStack extractItem(int slot, int amount, boolean simulate) { + return internalSlot.extractItem(slot, amount, simulate); + } +} + diff --git a/src/main/java/com/zontreck/libzontreck/lore/ExtraLore.java b/src/main/java/com/zontreck/libzontreck/lore/ExtraLore.java new file mode 100644 index 0000000..05047e2 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/lore/ExtraLore.java @@ -0,0 +1,94 @@ +package com.zontreck.libzontreck.lore; + +import java.util.ArrayList; +import java.util.List; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.annotations.SerializedName; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.StringTag; +import net.minecraft.nbt.Tag; + +/** + * Represents a container for multiple LoreEntry instances. + */ +public class ExtraLore { + @SerializedName("extra") + public List loreData = new ArrayList<>(); + + /** + * Saves the lore entries into a CompoundTag for storage. + * + * @param tag The CompoundTag to save the entries. + */ + public void save(CompoundTag tag) { + ListTag lores = saveEntries(); + // Extra entry in display:Lore list + tag.put("extra", lores); + } + + /** + * Saves the lore entries into a ListTag. + * + * @return The ListTag containing saved lore entries. + */ + public ListTag saveEntries() { + ListTag lores = new ListTag(); + for (LoreEntry loreEntry : loreData) { + lores.add(StringTag.valueOf(loreEntry.saveJson())); + } + return lores; + } + + /** + * Generates a JSON string representing the lore entries. + * + * @return The JSON string representing the lore entries. + */ + public String saveJson() { + Gson gson = new GsonBuilder().setPrettyPrinting().create(); + return gson.toJson(this); + } + + + /** + * Parses a JSON string to create an ExtraLore object with LoreEntry instances. + * + * @param json The JSON string representing lore entries. + * @return An ExtraLore object created from the JSON string. + */ + public static ExtraLore parseJson(String json) { + Gson gson = new Gson(); + return gson.fromJson(json, ExtraLore.class); + } + + /** + * Constructs an ExtraLore object from a CompoundTag. + * + * @param tags The CompoundTag containing lore entries. + */ + public ExtraLore(CompoundTag tags) { + ListTag tag = tags.getList("extra", CompoundTag.TAG_COMPOUND); + for (Tag t : tag) { + CompoundTag ct = (CompoundTag) t; + loreData.add(new LoreEntry(ct)); + } + } + + public ExtraLore(ListTag tag) + { + for(Tag t : tag) + { + loreData.add(LoreEntry.parseJson(t.getAsString())); + } + } + + /** + * Constructs an empty ExtraLore object. + */ + public ExtraLore() { + // Empty constructor + } +} diff --git a/src/main/java/com/zontreck/libzontreck/lore/LoreContainer.java b/src/main/java/com/zontreck/libzontreck/lore/LoreContainer.java new file mode 100644 index 0000000..dbf3653 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/lore/LoreContainer.java @@ -0,0 +1,89 @@ +package com.zontreck.libzontreck.lore; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.Tag; +import net.minecraft.world.item.ItemStack; + +public class LoreContainer { + private int loreEntryNumber; + public ExtraLore miscData = new ExtraLore(); + private final ItemStack associatedItem; + + public LoreContainer(ItemStack stack) { + associatedItem = stack; + loreEntryNumber = getLoreEntryNumber(stack); + parseExistingLore(stack); + } + + public void commitLore() { + assertLoreExists(); + CompoundTag tag = associatedItem.getOrCreateTag(); + CompoundTag display = tag.getCompound(ItemStack.TAG_DISPLAY); + ListTag lore = miscData.saveEntries(); + + display.put(ItemStack.TAG_LORE, lore); + tag.put(ItemStack.TAG_DISPLAY, display); + associatedItem.setTag(tag); + } + + public void clear() { + loreEntryNumber = 0; + miscData.loreData.clear(); + CompoundTag tag = associatedItem.getOrCreateTag().getCompound(ItemStack.TAG_DISPLAY); + tag.remove(ItemStack.TAG_LORE); + commitLore(); + } + + private void setOrUpdateIndex(ListTag lst, int pos, Tag insert) { + if (lst.size() <= pos) { + lst.add(insert); + loreEntryNumber = lst.size() - 1; + } else { + lst.set(pos, insert); + } + } + + private void assertLoreExists() { + assertTag(); + assertDisplay(); + assertLore(); + } + + private void assertTag() { + if (!associatedItem.hasTag()) { + associatedItem.setTag(new CompoundTag()); + } + } + + private void assertDisplay() { + CompoundTag tag = associatedItem.getOrCreateTag(); + CompoundTag display = tag.getCompound(ItemStack.TAG_DISPLAY); + if (display.isEmpty()) { + tag.put(ItemStack.TAG_DISPLAY, new CompoundTag()); + associatedItem.setTag(tag); + } + } + + private void assertLore() { + CompoundTag tag = associatedItem.getOrCreateTag(); + CompoundTag display = tag.getCompound(ItemStack.TAG_DISPLAY); + ListTag lore = display.getList(ItemStack.TAG_LORE, Tag.TAG_STRING); + if (lore.isEmpty()) { + display.put(ItemStack.TAG_LORE, new ListTag()); + associatedItem.setTag(tag); + } + } + + private int getLoreEntryNumber(ItemStack stack) { + CompoundTag display = stack.getOrCreateTag().getCompound(ItemStack.TAG_DISPLAY); + ListTag loreEntries = display.getList(ItemStack.TAG_LORE, Tag.TAG_STRING); + return (loreEntries != null) ? loreEntries.size() : 0; + } + + private void parseExistingLore(ItemStack stack) { + CompoundTag display = stack.getOrCreateTag().getCompound(ItemStack.TAG_DISPLAY); + ListTag loreEntries = display.getList(ItemStack.TAG_LORE, Tag.TAG_STRING); + miscData = new ExtraLore(loreEntries); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/lore/LoreEntry.java b/src/main/java/com/zontreck/libzontreck/lore/LoreEntry.java new file mode 100644 index 0000000..b043846 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/lore/LoreEntry.java @@ -0,0 +1,160 @@ +package com.zontreck.libzontreck.lore; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.reflect.TypeToken; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; + +import java.util.ArrayList; +import java.util.List; + +public class LoreEntry { + + /** + * Builder pattern for creating a LoreEntry object. + */ + public static class Builder { + private boolean bold; + private boolean italic; + private boolean underlined; + private boolean strikethrough; + private boolean obfuscated; + private String color = ""; + private String text = ""; + + public Builder bold(boolean bold) { + this.bold = bold; + return this; + } + + public Builder italic(boolean italic) { + this.italic = italic; + return this; + } + + public Builder underlined(boolean underlined) { + this.underlined = underlined; + return this; + } + + public Builder strikethrough(boolean strikethrough) { + this.strikethrough = strikethrough; + return this; + } + + public Builder obfuscated(boolean obfuscated) { + this.obfuscated = obfuscated; + return this; + } + + public Builder color(String color) { + this.color = color; + return this; + } + + public Builder text(String text) { + this.text = text; + return this; + } + + public LoreEntry build() { + return new LoreEntry(this); + } + } + + public boolean bold; + public boolean italic; + public boolean underlined; + public boolean strikethrough; + public boolean obfuscated; + public String color = ""; + public String text = ""; + + /** + * Constructs a LoreEntry object from a Builder + */ + LoreEntry(Builder builder) { + bold = builder.bold; + italic = builder.italic; + underlined = builder.underlined; + strikethrough = builder.strikethrough; + obfuscated = builder.obfuscated; + color = builder.color; + text = builder.text; + } + + + public LoreEntry (CompoundTag tag) + { + + bold = tag.getBoolean("bold"); + italic = tag.getBoolean("italic"); + underlined = tag.getBoolean("underlined"); + strikethrough = tag.getBoolean("strikethrough"); + obfuscated = tag.getBoolean("obfuscated"); + color = tag.getString("color"); + text = tag.getString("text"); + } + + /** + * Saves the lore attributes into a ListTag for storage. + * + * @param parentTag The parent ListTag to save the attributes. + */ + public void save(ListTag parentTag) { + CompoundTag tag = new CompoundTag(); + tag.putBoolean("bold", bold); + tag.putBoolean("italic", italic); + tag.putBoolean("underlined", underlined); + tag.putBoolean("strikethrough", strikethrough); + tag.putBoolean("obfuscated", obfuscated); + tag.putString("color", color); + tag.putString("text", text); + + parentTag.add(tag); + } + + /** + * Generates a JSON string representing the lore entry. + * + * @return The JSON string representing the lore entry. + */ + public String saveJson() { + List list = new ArrayList<>(); + list.add(this); + + Gson gson = new GsonBuilder().setPrettyPrinting().create(); + return gson.toJson(list); + } + + + /** + * Parses a JSON string to create a LoreEntry object. + * + * @param json The JSON string representing lore attributes. + * @return A LoreEntry object created from the JSON string. + */ + + public static LoreEntry parseJson(String json) { + Gson gson = new Gson(); + List list = gson.fromJson(json, new TypeToken>() {}.getType()); + + if (list != null && !list.isEmpty()) { + return list.get(0); + } + + return null; + } + + + /** + * Converts a boolean value to its string representation. + * + * @param a The boolean value to convert. + * @return The string representation of the boolean. + */ + private String bool2str(boolean a) { + return a ? "true" : "false"; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/lore/LoreType.java b/src/main/java/com/zontreck/libzontreck/lore/LoreType.java new file mode 100644 index 0000000..ddd5874 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/lore/LoreType.java @@ -0,0 +1,25 @@ +package com.zontreck.libzontreck.lore; + +public enum LoreType { + UNKNOWN((byte) 0x00), + STATS((byte) 0x01), + ORIGINAL_CRAFTER((byte)0x02); + + private final byte type; + + private LoreType(byte Option) { + type = Option; + } + + public static LoreType valueOf(byte b) { + LoreType _T = LoreType.UNKNOWN; + _T = values()[b]; + + return _T; + } + + public byte get() + { + return type; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java b/src/main/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java new file mode 100644 index 0000000..269e919 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/player/PlayerComponent.java @@ -0,0 +1,60 @@ +package com.zontreck.libzontreck.memory.player; + +import java.util.UUID; + +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.server.ServerLifecycleHooks; + +public class PlayerComponent +{ + public ServerPlayer player; + public WorldPosition position; + public WorldPosition lastPosition; + + public PlayerComponent(ServerPlayer play) + { + player=play; + position = new WorldPosition(play); + } + + public boolean positionChanged() + { + WorldPosition wp = new WorldPosition(player); + return !(wp.same(position)); + } + + public void update() + { + lastPosition=position; + position = new WorldPosition(player); + } + + public static PlayerComponent fromID(UUID ID) + { + return new PlayerComponent(ServerLifecycleHooks.getCurrentServer().getPlayerList().getPlayer(ID)); + } + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putUUID("id", player.getUUID()); + tag.put("pos", position.serialize()); + return tag; + } + + public static PlayerComponent deserialize(CompoundTag tag) + { + PlayerComponent comp = PlayerComponent.fromID(tag.getUUID("id")); + try { + comp.position = new WorldPosition(tag.getCompound("pos"), false); + } catch (InvalidDeserialization e) { + e.printStackTrace(); + } + + + return comp; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java b/src/main/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java new file mode 100644 index 0000000..7cb2645 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/player/PlayerContainer.java @@ -0,0 +1,24 @@ +package com.zontreck.libzontreck.memory.player; + +import java.util.UUID; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.server.ServerLifecycleHooks; + +public class PlayerContainer { + public UUID ID; + public PlayerComponent player; + public CompoundTag miscData; + + public PlayerContainer(UUID ID) + { + this(ServerLifecycleHooks.getCurrentServer().getPlayerList().getPlayer(ID)); + } + public PlayerContainer(ServerPlayer player) + { + this.player = new PlayerComponent(player); + miscData=new CompoundTag(); + ID = player.getUUID(); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java b/src/main/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java new file mode 100644 index 0000000..7ab3c92 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/player/VolatilePlayerStorage.java @@ -0,0 +1,67 @@ +package com.zontreck.libzontreck.memory.player; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; +import java.util.UUID; + +// This class is a universal data storage class for per-player data storage +// If a player logs out, this memory gets erased. Do not store anything here that requires persistence. Store it on the player instead. +public class VolatilePlayerStorage { + private List datas = new ArrayList<>(); + + + public void update(UUID player, PlayerContainer comp) + { + int indexOf = index(player); + if(indexOf!=-1) + datas.set(indexOf, comp); + } + + public PlayerContainer getNew(UUID player) + { + if(index(player)==-1) + { + PlayerContainer comp = new PlayerContainer(player); + datas.add(comp); + return comp; + }else return get(player); + } + + public PlayerContainer get(UUID player) + { + int indexOf = index(player); + if(indexOf!=-1) + { + return datas.get(indexOf); + }else return getNew(player); + } + + public void delete(UUID id) + { + int index = index(id); + if(index!=-1) + { + datas.remove(index); + } + } + + // Returns the index of the component by ID, or -1 if not found + public int index(UUID id) + { + int ret=-1; + Iterator it = datas.iterator(); + while(it.hasNext()) + { + PlayerContainer comp = it.next(); + if(comp.ID.equals(id)) + { + ret=datas.indexOf(comp); + break; + } + } + + + return ret; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestore.java b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestore.java new file mode 100644 index 0000000..684b22e --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestore.java @@ -0,0 +1,19 @@ +package com.zontreck.libzontreck.memory.world; + +public class BlockRestore extends BlockRestoreQueue +{ + @Override + public String getRestoreQueueName() { + return "BasicBlockSnapshots"; + } + + @Override + public void notifyDirtyQueue(boolean blockAdded) { + return; // We dont care. This is a basic queue + } + + @Override + public boolean sorted() { + return false; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java new file mode 100644 index 0000000..fdd42cd --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueue.java @@ -0,0 +1,332 @@ +package com.zontreck.libzontreck.memory.world; + +import com.zontreck.libzontreck.LibZontreck; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtIo; +import net.minecraft.server.level.ServerLevel; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.event.server.ServerStoppingEvent; +import net.minecraftforge.eventbus.api.SubscribeEvent; + +import java.io.*; +import java.sql.PreparedStatement; +import java.sql.ResultSet; +import java.sql.SQLException; +import java.util.ArrayList; +import java.util.List; +import java.util.concurrent.ScheduledFuture; +import java.util.concurrent.TimeUnit; + + +public abstract class BlockRestoreQueue +{ + private List BLOCK_QUEUE = new ArrayList<>(); + private final BlockRestoreRunner RUNNER; + private ScheduledFuture RUNNING_TASK; + private ScheduledFuture DATABASE_UPLOAD_RUNNER; + + /** + * When in database mode, this flag will be checked by the Restore Runner so a database call is not made unnecessarily. + */ + private boolean hasBlocks = true; + + public BlockRestoreQueue() + { + RUNNER = new BlockRestoreRunner(this); + + MinecraftForge.EVENT_BUS.register(this); + } + + /** + * When true, uses the database to store blocks. The blocks stored in the database will not be loaded into memory at runtime + * @return + */ + public boolean usesDatabase() + { + return false; + } + + /** + * Returns the restore queue name + * @return Name of the restore queue + */ + public abstract String getRestoreQueueName(); + + /** + * @return The number of blocks remaining in this queue + */ + public int getQueuedBlocks() + { + return BLOCK_QUEUE.size(); + } + + /** + * Queues a block to be restored + * @param block + */ + public void enqueueBlock(SavedBlock block) + { + enqueueBlock(block.getBlockPrimitive()); + } + + /** + * Queues a block to be restored + * @param block + */ + public void enqueueBlock(PrimitiveBlock block) + { + /* + if(usesDatabase()) + { + databaseUpdate(block); + notifyDirtyQueue(true); + hasBlocks=true; + return; + }*/ + BLOCK_QUEUE.add(block); + + notifyDirtyQueue(true); + } + + /** + * Called when enqueuing a block, this is a special handler to insert the block to the database. Custom queues should override this to put into a different table, or add additional data + * @param block + */ + public void databaseUpdate(PrimitiveBlock block) + { + + hasBlocks=true; + PreparedStatement pstmt = null; + try { + pstmt = DatabaseWrapper.get().prepareStatement("INSERT INTO `blocks` (queueName, posX, posY, posZ, snapshotID, block) VALUES (?, ?, ?, ?, ?, ?);"); + pstmt.setString(1, getRestoreQueueName()); + pstmt.setInt(2, block.position.getX()); + pstmt.setInt(3, block.position.getY()); + pstmt.setInt(4, block.position.getZ()); + pstmt.setInt(5, 0); + ByteArrayOutputStream blockState = new ByteArrayOutputStream(); + DataOutputStream dos0 = new DataOutputStream(blockState); + NbtIo.write(block.serialize(), dos0); + pstmt.setBytes(6, blockState.toByteArray()); + + + DatabaseWrapper.get().executePreparedStatement(pstmt); + + } catch (Exception e) + { + // Duplicate block insertion, we only cache each block one time by default. If this function is overridden to use a different table, perhaps multiple blocks for the same position could be cached. + } + } + + /** + * Executed when the queue is modified. + * @param blockAdded Whether a block was added or removed from the queue + */ + public abstract void notifyDirtyQueue(boolean blockAdded); + + /** + * Pops a block off the queue, and returns it + * @return A PrimitiveBlock instance of the SavedBlock + */ + public PrimitiveBlock getNextBlock() + { + if (usesDatabase()) { + // Send a query to the database to retrieve the block, and reconstruct here + try { + PreparedStatement sel; + if (sorted()) { + sel = DatabaseWrapper.get().prepareStatement("SELECT * FROM `blocks` WHERE queueName=? ORDER BY posY ASC LIMIT 1;"); + } else + sel = DatabaseWrapper.get().prepareStatement("SELECT * FROM `blocks` WHERE queueName=? LIMIT 1;"); + + sel.setString(1, getRestoreQueueName()); + ResultSet res = DatabaseWrapper.get().executePreparedStatementQuery(sel); + // Now retrieve the block from the database + if (res.next()) { + byte[] data = res.getBytes("block"); + ByteArrayInputStream bais = new ByteArrayInputStream(data); + DataInputStream dis = new DataInputStream(bais); + + PrimitiveBlock block = PrimitiveBlock.deserialize(NbtIo.read(dis)); + + if(block.level.getBlockState(block.position).is(block.blockType)) + { + + try { + res.deleteRow(); + if (!res.rowDeleted()) { + + } + } catch (SQLException e001) { + PreparedStatement pstat = DatabaseWrapper.get().prepareStatement("DELETE FROM `blocks` WHERE queueName=? AND posX=? AND posY=? AND posZ=?;"); + pstat.setString(1, getRestoreQueueName()); + pstat.setInt(2, block.position.getX()); + pstat.setInt(3, block.position.getY()); + pstat.setInt(4, block.position.getZ()); + DatabaseWrapper.get().executePreparedStatement(pstat); + } + } + + return block; + } else return null; + + } catch (SQLException e) { + throw new RuntimeException(e); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + PrimitiveBlock blk = BLOCK_QUEUE.get(0); + BLOCK_QUEUE.remove(0); + notifyDirtyQueue(false); + return blk; + } + + /** + * Sets the hasBlocks flag to false to reduce DB Spam + */ + public void setNoBlocks() + { + hasBlocks=false; + } + + /** + * Override to indicate if the list should be sorted by lowest Y value + * + * @return + */ + public abstract boolean sorted(); + + /** + * Whether the queue has blocks or not + * @return + */ + public boolean hasBlocks() + { + if(usesDatabase()) return hasBlocks; + else return getQueuedBlocks() != 0; + } + + /** + * Clears the entire queue, discarding the saved blocks permanently. + */ + public void clear() + { + BLOCK_QUEUE.clear(); + notifyDirtyQueue(false); + } + + /** + * Returns the raw block queue instance + * @return + */ + public List getQueue() { + return BLOCK_QUEUE; + } + + /** + * Sets the block queue, without notifying listeners + * @param queue + */ + public void setQueueNoNotify(List queue) + { + BLOCK_QUEUE = queue; + } + + /** + * Sets the block queue, and notifies any listeners that blocks were potentially added + * @param queue + */ + public void setQueue(List queue) + { + BLOCK_QUEUE = queue; + notifyDirtyQueue(true); + } + + /** + * Gets the restore runner instance initialized for this queue + * @return + */ + public BlockRestoreRunner getRunner() + { + return RUNNER; + } + + /** + * Must be called manually to register a restore queue. This will have a 2 second fixed delay before initial execution + */ + public void schedule(long interval, TimeUnit unit) + { + RUNNING_TASK = LibZontreck.executor.scheduleAtFixedRate(RUNNER, 2000, interval, unit); + + DATABASE_UPLOAD_RUNNER = LibZontreck.executor.scheduleAtFixedRate(new DatabaseUploadRunner(this), 2000, 50, TimeUnit.MILLISECONDS); + + isCancelled=false; + } + + /** + * Cancels the restore job + */ + public void cancel() + { + isCancelled=true; + RUNNING_TASK.cancel(false); + } + + public boolean isCancelled=false; + + /** + * Remove a block from the local queue. This does not impact the database and is used internally + * @param block + */ + public void dequeue(PrimitiveBlock block) + { + BLOCK_QUEUE.remove(block); + } + + /** + * Cancels the repeating upload to database task. This is automatically invoked when cancel has been invoked, and no more tasks are to be uploaded. + */ + public void cancelUploader() + { + DATABASE_UPLOAD_RUNNER.cancel(true); + } + + @SubscribeEvent + public void onServerStopping(ServerStoppingEvent event) + { + cancel(); + } + + /** + * Initialize a restore Queue for a specific level. This will load and import the blocks in the save data into this queue + * @param level The level to load for + * @throws IOException On failure to read a file + */ + public void initialize(ServerLevel level) throws IOException { + if(usesDatabase()) + { + return; + } + var file = SaveDataFactory.builder().withDimension(level).withQueueID(this).withPosition(null).build(); + + if(!file.getSaveDataPath().toFile().exists()) + { + return; + } + CompoundTag tag = NbtIo.read(file.getSaveDataPath().toFile()); + SaveDataFactory.SaveDataManifest manifest = SaveDataFactory.SaveDataManifest.deserialize(tag); + + List files = manifest.get(); + for(SaveDataCoordinates chunk : files) + { + var saved = SaveDataFactory.builder().withDimension(level).withQueueID(this).withPosition(chunk.toBlockPos()).build(); + var saveData = saved.getInstance(); + for(SavedBlock sb : saveData.blocks) + { + enqueueBlock(sb); + } + } + + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java new file mode 100644 index 0000000..a30835b --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreQueueRegistry.java @@ -0,0 +1,65 @@ +package com.zontreck.libzontreck.memory.world; + +import com.zontreck.libzontreck.events.BlockRestoreQueueRegistrationEvent; +import net.minecraft.server.level.ServerLevel; + +import java.io.IOException; +import java.util.*; + +/** + * DANGER: DO NOT USE THIS CLASS DIRECTLY + */ +public class BlockRestoreQueueRegistry +{ + private static Map QUEUES = new HashMap<>(); + + /** + * Internal use only + * + * @see BlockRestoreQueueRegistrationEvent + * @param queue The queue to register + */ + public static void addQueue(BlockRestoreQueue queue) { + QUEUES.put(queue.getRestoreQueueName(), queue); + } + + /** + * Retrieves a registered restore queue by its name + * @param restoreQueueName Queue Name + * @return + */ + public static BlockRestoreQueue getQueue(String restoreQueueName) { + return QUEUES.get(restoreQueueName); + } + + /** + * Returns a iterator for a list of all the queues. This cannot remove items from the main queue. + * @return + */ + public static Iterator getReadOnlyQueue() { + List queues = new ArrayList<>(); + queues.addAll(QUEUES.values()); + return queues.iterator(); + } + + /** + * Initialize a block restore queue. + *

+ * Block Restore Queues are level independent, but blocks are not. This loads the blocks saved for this queue in that particular level's hierarchy + * @param level The level to load the queue for + */ + public static void init(ServerLevel level) + { + + Iterator it = BlockRestoreQueueRegistry.getReadOnlyQueue(); + while(it.hasNext()) + { + BlockRestoreQueue queue = it.next(); + try { + queue.initialize(level); + } catch (IOException e) { + throw new RuntimeException(e); + } + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java new file mode 100644 index 0000000..53a31f3 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/BlockRestoreRunner.java @@ -0,0 +1,55 @@ +package com.zontreck.libzontreck.memory.world; + +import net.minecraft.core.BlockPos; +import net.minecraft.sounds.SoundEvent; +import net.minecraft.sounds.SoundEvents; +import net.minecraft.sounds.SoundSource; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.entity.BlockEntity; + +import java.util.Random; + +public class BlockRestoreRunner implements Runnable +{ + public BlockRestoreRunner(BlockRestoreQueue queue) + { + this.queue = queue; + } + + private BlockRestoreQueue queue; + public final SoundEvent pop = SoundEvents.ITEM_PICKUP; + + @Override + public void run() { + if(queue.getQueuedBlocks() == 0 && !queue.usesDatabase()) return; // We'll be queued back up later + + if(!queue.hasBlocks()) + return; + + PrimitiveBlock prim = queue.getNextBlock(); + if(prim == null){ + queue.setNoBlocks(); + return; // No more blocks. + } + + Level level = prim.level; + + // Everything is restored, play sound + SoundSource ss = SoundSource.NEUTRAL; + BlockPos pos = prim.position; + Random rng = new Random(); + + level.playSound(null, pos, pop, ss, rng.nextFloat(0.75f,1.0f), rng.nextFloat(1)); + + level.setBlock(pos, prim.blockState, Block.UPDATE_CLIENTS, 0); + + BlockEntity entity = level.getBlockEntity(pos); + if(entity != null) + { + entity.load(prim.blockEntity); + } + + + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java b/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java new file mode 100644 index 0000000..68ab637 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseMigrations.java @@ -0,0 +1,207 @@ +package com.zontreck.libzontreck.memory.world; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.events.RegisterMigrationsEvent; +import net.minecraftforge.common.MinecraftForge; + +import java.sql.PreparedStatement; +import java.sql.SQLException; +import java.util.ArrayList; +import java.util.List; + +public class DatabaseMigrations +{ + public static class Migration + { + String tableID; + int version; + List migrationActions = new ArrayList<>(); + + private Migration(){ + tableID = ""; + version = 0; + } + + /** + * Builder pattern function - Sets the table ID for the migration + * @param tableID + * @return + */ + public Migration withTableID(String tableID) + { + this.tableID = tableID; + return this; + } + + /** + * Builder pattern function - Sets the table version for the migration + * @param version + * @return + */ + public Migration withVersion(int version) + { + this.version = version; + return this; + } + + /** + * Builder pattern function - Adds the action to be executed. The list will operate as FILO. + * @param pstat + * @return + */ + public Migration withMigrationAction(PreparedStatement pstat) + { + migrationActions.add(pstat); + return this; + } + + /** + * Executes the migration as defined by the builder pattern. + */ + public void execute() + { + for(PreparedStatement pstmt : migrationActions) + { + try { + DatabaseWrapper.get().executePreparedStatement(pstmt); + } catch (SQLException e) { + LibZontreck.LOGGER.warn("There was a problem executing a migration. The migration is " + pstmt+"\n\nThis does not necessarily mean a failure. If everything seems to work fine, this migration might not have been necessary.\n\n"); + e.printStackTrace(); + } + } + + try { + + PreparedStatement pstat = DatabaseWrapper.get().prepareStatement("REPLACE INTO `migrations` (tableID, version) VALUES (?,?);"); + pstat.setString(1, tableID); + pstat.setInt(2, version); + + LibZontreck.LOGGER.info("SQL QUERY: " + pstat); + + pstat.execute(); + } catch (SQLException ex) + { + ex.printStackTrace(); + } + + + } + + } + private static List migrations = new ArrayList<>(); + + public static void initMigrations() throws SQLException { + Migration migrationsTable = builder() + .withVersion(1) + .withTableID("migrations"); + + PreparedStatement statement = DatabaseWrapper.get().prepareStatement("CREATE TABLE `migrations` (" + + " `tableID` varchar(255) NOT NULL," + + " `version` int(11) NOT NULL," + + " PRIMARY KEY (`tableID`)," + + " UNIQUE KEY `tableID` (`tableID`)" + + ") ;"); + migrations.add(migrationsTable.withMigrationAction(statement)); + + Migration blocksTable = builder() + .withTableID("blocks") + .withVersion(1); + + PreparedStatement makeBlocksTable = DatabaseWrapper.get().prepareStatement("CREATE TABLE `blocks` (" + + " `time` timestamp NOT NULL DEFAULT current_timestamp()," + + " `queueName` varchar(255) NOT NULL," + + " `posX` int(11) NOT NULL," + + " `posY` int(11) NOT NULL," + + " `posZ` int(11) NOT NULL," + + " `snapshotID` int(11) NOT NULL DEFAULT 0 COMMENT 'Enables multiple blocks existing at the same position'," + + " `block` blob NOT NULL COMMENT 'NBT Data representing a SavedBlock'," + + " PRIMARY KEY (`time`)" + + ") ;"); + + migrations.add(blocksTable.withMigrationAction(makeBlocksTable)); + + Migration blocksUpdate = builder() + .withTableID("blocks") + .withVersion(2); + PreparedStatement removePKey = DatabaseWrapper.get().prepareStatement("ALTER TABLE `blocks` DROP PRIMARY KEY;"); + blocksUpdate.withMigrationAction(removePKey); + PreparedStatement addIDColumn = DatabaseWrapper.get().prepareStatement("ALTER TABLE `blocks` ADD `ID` INT NOT NULL AUTO_INCREMENT FIRST, ADD PRIMARY KEY (`ID`);"); + blocksUpdate.withMigrationAction(addIDColumn); + + migrations.add(blocksUpdate); + + migrations.add(builder() + .withTableID("blocks") + .withVersion(3) + .withMigrationAction(DatabaseWrapper.get().prepareStatement("ALTER TABLE `blocks` ADD UNIQUE (`posX`, `posY`, `posZ`); "))); + + + + RegisterMigrationsEvent rme = new RegisterMigrationsEvent(); + MinecraftForge.EVENT_BUS.post(rme); + + + migrations.addAll(rme.getMigrations()); + + + executeMigrations(); + } + + private static void executeMigrations() + { + + Migration lastTableChecked = null; + for(Migration m : migrations) + { + + if(lastTableChecked == null) lastTableChecked = getCurrentTable(m.tableID); + else { + if(lastTableChecked.tableID != m.tableID) lastTableChecked = getCurrentTable(m.tableID); + } + + if(lastTableChecked == null || m.version > lastTableChecked.version) { + + LibZontreck.LOGGER.info("Executing migration " + m.tableID + ":" + m.version); + m.execute(); + } else { + LibZontreck.LOGGER.info("Skipping migration on table " + m.tableID + "; Current table version is " + lastTableChecked.version); + } + } + } + + /** + * Gets the current table's version using the Migration structure for data fields. Will be null if there is an error on any table except for migrations. + * @return + */ + private static Migration getCurrentTable(String tableID) + { + try{ + PreparedStatement pst = DatabaseWrapper.get().prepareStatement("SELECT * FROM `migrations` WHERE tableID=?;"); + pst.setString(1, tableID); + + var result = pst.executeQuery(); + if(!result.next()) + { + return builder().withTableID(tableID).withVersion(0); + }else { + return builder().withTableID(tableID).withVersion(result.getInt("version")); + } + + }catch (Exception ex) + { + if(tableID == "migrations") + { + return builder().withTableID(tableID) + .withVersion(0); + } + ex.printStackTrace(); + + return null; + } + } + + public static Migration builder() + { + return new Migration(); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java b/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java new file mode 100644 index 0000000..5fc78f7 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseUploadRunner.java @@ -0,0 +1,26 @@ +package com.zontreck.libzontreck.memory.world; + +public class DatabaseUploadRunner implements Runnable { + private BlockRestoreQueue QUEUE; + public DatabaseUploadRunner(BlockRestoreQueue queue) + { + QUEUE = queue; + } + + @Override + public void run() { + if(QUEUE.getQueuedBlocks() == 0) + { + if(QUEUE.isCancelled) + { + QUEUE.cancelUploader(); + return; + } + } else { + PrimitiveBlock block = QUEUE.getQueue().get(0); + QUEUE.dequeue(block); + + QUEUE.databaseUpdate(block); + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java b/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java new file mode 100644 index 0000000..7aca589 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/DatabaseWrapper.java @@ -0,0 +1,163 @@ +package com.zontreck.libzontreck.memory.world; + + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.config.ServerConfig; + +import java.sql.*; + +public class DatabaseWrapper { + private Connection connection; + public static boolean hasDB = true; + + private static DatabaseWrapper instance; + + public static DatabaseWrapper get() { + if(!hasDB) { + throw new RuntimeException("Error: Database is not set up"); + } + + if (instance == null) + start(); + + try { + instance.sanityCheck(); + } catch (SQLException e) { + throw new RuntimeException(e); + } + return instance; + } + + /** + * This function will return true if the database drivers are available. + * + * @return + */ + public static boolean databaseIsAvailable() { + return instance.connection!=null; + } + + public DatabaseWrapper() { + connection = null; + } + + public static void start() { + instance = new DatabaseWrapper(); + try { + LibZontreck.LOGGER.info("Connecting to database..."); + LibZontreck.LOGGER.info("jdbc:db ://" + ServerConfig.database.user + "@" + ServerConfig.database.host + "/" + ServerConfig.database.database); + + instance.connect(ServerConfig.database.host, ServerConfig.database.user, ServerConfig.database.password, ServerConfig.database.database); + } catch (SQLException e) { + throw new RuntimeException(e); + } + } + + public static void invalidate() { + instance=null; + hasDB=false; + } + + private void restart() { + + LibZontreck.LOGGER.info("Reconnecting to database..."); + LibZontreck.LOGGER.info("jdbc:db ://" + ServerConfig.database.user + "@" + ServerConfig.database.host + "/" + ServerConfig.database.database); + + try { + instance.connect(ServerConfig.database.host, ServerConfig.database.user, ServerConfig.database.password, ServerConfig.database.database); + } catch (SQLException e) { + throw new RuntimeException(e); + } + } + + public void connect(String url, String username, String password, String database) throws SQLException { + if(database.isBlank()) + { + ServerConfig.init(); + if(ServerConfig.database.database.isBlank()) + { + throw new SQLException("Failed to connect to database"); + } else { + start(); + return; + } + } + try { + // Try MariaDB JDBC driver + Class.forName("org.mariadb.jdbc.Driver"); + connection = DriverManager.getConnection("jdbc:mariadb://" + url + "/" + database, username, password); + } catch (ClassNotFoundException | SQLException e) { + // MariaDB not found or failed to connect, try MySQL + LibZontreck.LOGGER.warn("Failed to connect via MariaDB: " + e.getMessage() + "; Attempting to fall back to mysql"); + try { + Class.forName("com.mysql.cj.jdbc.Driver"); + connection = DriverManager.getConnection("jdbc:mysql://" + url + "/" + database, username, password); + } catch (ClassNotFoundException | SQLException ex) { + // MySQL not found or failed to connect, try SQLite + try { + + Class.forName("com.mysql.jdbc.Driver"); + connection = DriverManager.getConnection("jdbc:mysql://" + url + "/" + database, username, password); + } catch (ClassNotFoundException | SQLException ex1) { + + LibZontreck.LOGGER.warn("Failed to connect via MySQL: " + e.getMessage() + "; " + ex1.getMessage() + "; Attempting to fall back to sqlite"); + + try { + Class.forName("org.sqlite.JDBC"); + connection = DriverManager.getConnection("jdbc:sqlite:" + database + ".db"); + } catch (ClassNotFoundException | SQLException exc) { + LibZontreck.LOGGER.error("Failed to connect via SQLite: " + e.getMessage() + "; If you require the use of the block queues, please check the above warnings for explanation on cause. It could be that you do not have the relevant JDBC installed in your server mods list."); + } + } + } + } + } + + private void sanityCheck() throws SQLException { + if(connection.isClosed() || connection == null) { + restart(); + } + } + + public ResultSet executeQuery(String query) throws SQLException { + if (connection == null) { + throw new SQLException("Connection not established."); + } + Statement statement = connection.createStatement(); + return statement.executeQuery(query); + } + + public int executeUpdate(String statement) throws SQLException { + if (connection == null) { + throw new SQLException("Connection not established."); + } + return connection.createStatement().executeUpdate(statement); + } + + public void disconnect() throws SQLException { + if (connection != null && !connection.isClosed()) { + connection.close(); + } + } + + public int executePreparedStatement(PreparedStatement preparedStatement) throws SQLException { + if (connection == null) { + throw new SQLException("Connection not established."); + } + return preparedStatement.executeUpdate(); + } + + public ResultSet executePreparedStatementQuery(PreparedStatement query) throws SQLException { + if (connection == null) { + throw new SQLException("Connection not established."); + } + return query.executeQuery(); + } + + public PreparedStatement prepareStatement(String query) throws SQLException { + if (connection == null) { + throw new SQLException("Connection not established."); + } + return connection.prepareStatement(query); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java b/src/main/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java new file mode 100644 index 0000000..a64655d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/PrimitiveBlock.java @@ -0,0 +1,80 @@ +package com.zontreck.libzontreck.memory.world; + +import net.minecraft.core.BlockPos; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; + +public class PrimitiveBlock +{ + public final SavedBlock savedBlock; + public final Block blockType; + public final BlockState blockState; + public final CompoundTag blockEntity; + public final BlockPos position; + public final ServerLevel level; + + public PrimitiveBlock(SavedBlock savedBlock, Block blockType, BlockState blockState, CompoundTag blockEntity, BlockPos position, ServerLevel level) + { + this.savedBlock = savedBlock; + this.blockType = blockType; + this.blockEntity = blockEntity; + this.position = position; + this.level = level; + this.blockState = blockState; + } + + /** + * Alias method + * @see SavedBlock#serialize() + * @return NBT Tag + */ + public CompoundTag serialize() + { + return savedBlock.serialize(); + } + + /** + * Alias Method + * @see SavedBlock#deserialize(CompoundTag) + * @see SavedBlock#getBlockPrimitive() + * @param tag NBT Tag + * @return A Primitive Block + */ + public static PrimitiveBlock deserialize(CompoundTag tag) + { + return SavedBlock.deserialize(tag).getBlockPrimitive(); + } + + /** + * Compare a block with this primitive block + * @param state The block state to compare + * @param entity The block entity to compare + * @return True if identical + */ + public boolean is(BlockState state, BlockEntity entity) + { + if(state.getBlock() == this.blockType) + { + // Check the block state + if(this.blockState.equals(state)) + { + if(blockEntity == null) return true; // Not all blocks have a block entity. + if(blockEntity.equals(entity.serializeNBT())){ + return true; + }else return false; + } else return false; + }else return false; + } + + /** + * Clones the PrimitiveBlock into a new instance + * @return + */ + public PrimitiveBlock copy() + { + return savedBlock.clone().getBlockPrimitive(); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java b/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java new file mode 100644 index 0000000..b690525 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataCoordinates.java @@ -0,0 +1,43 @@ +package com.zontreck.libzontreck.memory.world; + +import net.minecraft.core.BlockPos; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; + +public class SaveDataCoordinates +{ + public int X; + public int Z; + private BlockPos source; + + public SaveDataCoordinates(BlockPos pos) + { + int X = pos.getX() >> 4 >> 5; + int Z = pos.getZ() >> 4 >> 5; + + source = pos; + } + + public String getFileName() + { + return "r." + X + "." + Z + ".dat"; + } + + public BlockPos toBlockPos() + { + return source; + } + + public static final String TAG_COORDS = "sdc"; + public CompoundTag toNBT() + { + return NbtUtils.writeBlockPos(source); + } + + public static SaveDataCoordinates deserialize(CompoundTag tag) + { + BlockPos pos = NbtUtils.readBlockPos(tag); + + return new SaveDataCoordinates(pos); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java b/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java new file mode 100644 index 0000000..610ac23 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/SaveDataFactory.java @@ -0,0 +1,267 @@ +package com.zontreck.libzontreck.memory.world; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.core.BlockPos; +import net.minecraft.nbt.*; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.level.Level; + +import java.io.IOException; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class SaveDataFactory +{ + static Map datas = new HashMap<>(); + + protected static boolean hasSaveDataInstance(SaveDataFile file) + { + return datas.containsKey(file.getSaveDataPath().toString()); + } + + protected static SaveData getSaveDataInstance(SaveDataFile file) + { + return datas.get(file.getSaveDataPath().toString()); + } + + public static Builder builder() + { + return new Builder(); + } + static class Builder + { + private String modID = "minecraft"; + private String levelName; + private String queueID; + private boolean DBMode; + private BlockPos position; + + public Builder withDimension(Level level) + { + ResourceLocation lv = level.dimension().location(); + this.modID = lv.getNamespace(); + this.levelName = lv.getPath(); + + return this; + } + + public Builder withQueueID(BlockRestoreQueue queue) + { + queueID = queue.getRestoreQueueName(); + + return this; + } + + public Builder withDatabaseMode() + { + DBMode=true; + + return this; + } + + public Builder withPosition(BlockPos pos) + { + position = pos; + + return this; + } + + public SaveDataManifest getManifest() + { + return new SaveDataManifest(); + } + + public SaveDataFile build() + { + return new SaveDataFile(modID, levelName, queueID, DBMode, position); + } + } + + static class SaveDataFile + { + String mod; + String dimension; + String queue; + boolean database; + BlockPos position; + boolean useManifest = false; + + public SaveDataFile(String modID, String levelName, String queueID, boolean DBMode, BlockPos pos) + { + mod = modID; + dimension = levelName; + queue = queueID; + database = DBMode; + position = pos; + + if(pos == null) + { + useManifest=true; + } + } + + /** + * config/LibZontreck/block_snapshots/[mod]/[dimension]/[queueNickName]/r.x.z.dat + * @return + */ + public Path getSaveDataPath() + { + Path path = LibZontreck.BASE_CONFIG.resolve("block_snapshots"); + if(mod != null) path = path.resolve(mod); + if(dimension != null) path = path.resolve(dimension); + if(queue != null) path = path.resolve(queue); + + path.toFile().mkdirs(); + + if(useManifest) return path.resolve("manifest.nbt"); + + SaveDataCoordinates coordinates = new SaveDataCoordinates(position); + path = path.resolve(coordinates.getFileName()); + return path; + } + + /** + * Reads the save data, or initializes a new instance. + *

+ * Additionally, this will check for a pre-existing POJO instance and return if it exists. + * @return + * @throws IOException + */ + public SaveData getInstance() throws IOException { + if(SaveDataFactory.hasSaveDataInstance(this)) return SaveDataFactory.getSaveDataInstance(this); + Path data = getSaveDataPath(); + if(data.toFile().exists()) + { + CompoundTag tag = NbtIo.read(data.toFile()); + + return SaveData.deserialize(tag, this); + } else { + + return new SaveData(this); + } + } + } + + static class SaveDataManifest { + private List SAVE_DATA = new ArrayList<>(); + public static final String TAG_MANIFEST = "manifest"; + + private SaveDataManifest() + { + } + + public void add(SaveDataCoordinates pos){ + SAVE_DATA.add(pos); + } + + public List get() + { + return new ArrayList<>(SAVE_DATA); + } + + public CompoundTag save() + { + CompoundTag tag = new CompoundTag(); + ListTag lst = new ListTag(); + for(SaveDataCoordinates str : SAVE_DATA) + { + lst.add(str.toNBT()); + } + tag.put(TAG_MANIFEST, lst); + return tag; + + } + + public static SaveDataManifest deserialize(CompoundTag tag) + { + SaveDataManifest ret = new SaveDataManifest(); + ListTag lst = tag.getList(TAG_MANIFEST, Tag.TAG_COMPOUND); + for(Tag entry : lst) + { + if(entry instanceof CompoundTag ct) + { + ret.add(SaveDataCoordinates.deserialize(ct)); + } + } + + return ret; + } + } + + static class SaveData { + SaveDataFile myFile; + public static final String TAG_SAVED_BLOCKS = "sb"; + + public List blocks = new ArrayList<>(); + + public SaveData(SaveDataFile file) + { + myFile = file; + } + + /** + * Read a NBT Tag and reconstruct the SaveData POJO + * @param tag + * @param file + * @return + */ + public static SaveData deserialize(CompoundTag tag, SaveDataFile file) { + SaveData data = new SaveData(file); + ListTag lst = tag.getList(TAG_SAVED_BLOCKS, ListTag.TAG_COMPOUND); + for(Tag xTag : lst) + { + if(xTag instanceof CompoundTag ct) + { + SavedBlock sb = SavedBlock.deserialize(ct); + data.blocks.add(sb); + } + } + + return data; + } + + /** + * Write the current save data to NBT + * @return + */ + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + ListTag lst = new ListTag(); + for(SavedBlock block : blocks) + { + lst.add(block.serialize()); + } + + tag.put(TAG_SAVED_BLOCKS, lst); + return tag; + } + + /** + * Imports a full queue to the save data file. + * ! WARNING ! This method will overwrite the SaveDataFile's Queue ID + * * * * + * This will only import for the correct dimension. This method is invoked automatically for each level for each queue when the server is shutting down prior to level unload. + * @param queue Queue to import + * @return The current SaveData instance + */ + public SaveData importQueue(BlockRestoreQueue queue) + { + for(PrimitiveBlock blk : queue.getQueue()) + { + if(WorldPosition.getDim(blk.level) == this.myFile.dimension) + blocks.add(blk.savedBlock); + else + continue; // We only want to add to a save data file, the blocks for the dimension in question. + } + + myFile.queue = queue.getRestoreQueueName(); + return this; + } + + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SavedBlock.java b/src/main/java/com/zontreck/libzontreck/memory/world/SavedBlock.java new file mode 100644 index 0000000..7515401 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/SavedBlock.java @@ -0,0 +1,111 @@ +package com.zontreck.libzontreck.memory.world; + +import com.zontreck.libzontreck.api.Vector3; +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.core.BlockPos; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.block.entity.BlockEntity; +import net.minecraft.world.level.block.state.BlockState; + +public class SavedBlock implements Cloneable +{ + private CompoundTag blockState; + private CompoundTag blockEntity; + private boolean hasBlockEntity; + private WorldPosition position; + + /** + * Take a snapshot of the block, and save as primitive type SavedBlock + * @param position The block's position + * @param level The level the position relates to + * @return A instance of the saved block + */ + public static SavedBlock takeSnapshot(Vector3 position, Level level) + { + SavedBlock savedBlock = new SavedBlock(); + BlockPos pos = position.asBlockPos(); + + BlockState state = level.getBlockState(pos); + savedBlock.blockState = NbtUtils.writeBlockState(state); + BlockEntity entity = level.getBlockEntity(pos); + if(entity == null) + { + savedBlock.hasBlockEntity = false; + }else { + savedBlock.hasBlockEntity = true; + savedBlock.blockEntity = entity.serializeNBT(); + } + + savedBlock.position = new WorldPosition(position.asVector3d(), (ServerLevel) level); + + return savedBlock; + } + + /** + * Saves the stored block as a NBT Tag + * @return CompoundTag + */ + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.put("state", blockState); + if(hasBlockEntity) tag.put("entity", blockEntity); + + tag.put("position", position.serialize()); + + return tag; + } + + /** + * Reads a NBT Tag that represents a stored block, and returns the StoredBlock object + * @param tag Saved NBT + * @return SavedBlock instance + */ + public static SavedBlock deserialize(CompoundTag tag) + { + SavedBlock savedBlock = new SavedBlock(); + savedBlock.blockState = tag.getCompound("state"); + if(tag.contains("entity")) { + savedBlock.blockEntity = tag.getCompound("entity"); + savedBlock.hasBlockEntity=true; + } + + try { + savedBlock.position = new WorldPosition(tag.getCompound("position"), false); + } catch (InvalidDeserialization e) { + throw new RuntimeException(e); + } + + return savedBlock; + } + + public PrimitiveBlock getBlockPrimitive() + { + ServerLevel level = position.getActualDimension(); + + BlockState state = NbtUtils.readBlockState(blockState); + + return new PrimitiveBlock(this, state.getBlock(), state, blockEntity, position.Position.asBlockPos(), level); + } + + @Override + public SavedBlock clone() { + try { + SavedBlock clone = (SavedBlock) super.clone(); + if(blockEntity != null) + clone.blockEntity = blockEntity.copy(); + if(blockState != null) + clone.blockState = blockState.copy(); + if(position != null) + clone.position = position.clone(); + + return clone; + } catch (CloneNotSupportedException e) { + throw new AssertionError(); + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java b/src/main/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java new file mode 100644 index 0000000..14c32b0 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/memory/world/SortedBlockQueue.java @@ -0,0 +1,38 @@ +package com.zontreck.libzontreck.memory.world; + +import com.zontreck.libzontreck.vectors.Vector3i; + +import java.util.ArrayList; +import java.util.Comparator; +import java.util.List; + +public class SortedBlockQueue extends BlockRestoreQueue +{ + @Override + public String getRestoreQueueName() { + return "SortedBlockQueue"; + } + @Override + public void notifyDirtyQueue(boolean blockAdded) { + if(blockAdded) { + List queue = getQueue(); + List retQueue = new ArrayList<>(queue.size()); + + // Sort the queue based on block positions + queue.sort(Comparator.comparing(block -> new Vector3i(block.position))); + + // Add blocks in sorted order to the new queue + for (PrimitiveBlock blk : queue) { + retQueue.add(blk.copy()); // Copy block if necessary + } + + setQueueNoNotify(retQueue); + } + } + + @Override + public boolean sorted() { + return true; + } + +} diff --git a/src/main/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java b/src/main/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java new file mode 100644 index 0000000..4fcb6c3 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/menus/ChestGUIMenu.java @@ -0,0 +1,65 @@ +package com.zontreck.libzontreck.menus; + +import com.zontreck.libzontreck.chestgui.ChestGUI; +import com.zontreck.libzontreck.dynamicchest.ChestGUIReadOnlyStackHandler; +import com.zontreck.libzontreck.types.ModMenuTypes; +import net.minecraft.core.BlockPos; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraft.world.entity.player.Inventory; +import net.minecraft.world.entity.player.Player; +import net.minecraft.world.inventory.AbstractContainerMenu; +import net.minecraft.world.inventory.MenuConstructor; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.items.ItemStackHandler; +import net.minecraftforge.items.SlotItemHandler; + +public class ChestGUIMenu extends AbstractContainerMenu +{ + public final ChestGUI gui; + public final ItemStackHandler slots; + public final Player player; + + public ChestGUIMenu(int id, Inventory playerInv, FriendlyByteBuf buf) + { + this(id, playerInv, BlockPos.ZERO, playerInv.player, null); + } + + public ChestGUIMenu(int id, Inventory playerInv, BlockPos position, Player player, ChestGUI gui) + { + super(ModMenuTypes.CHEST_GUI_MENU.get(), id); + + this.gui = gui; + this.player = player; + + slots = new ChestGUIReadOnlyStackHandler(gui, player); + + + int slotSize = 18; + int startX = 16; + int startY = 16; + + + for (int row = 0; row < 3; row++) + { + for(int column=0;column<9;column++) + { + addSlot(new SlotItemHandler(slots, row*9 + column, startX + column * slotSize, startY + row * slotSize)); + } + } + } + + @Override + public ItemStack quickMoveStack(Player player, int i) { + return ItemStack.EMPTY; + } + + @Override + public boolean stillValid(Player player) { + return true; + } + + public static MenuConstructor getServerMenu(ChestGUI gui) + { + return (id, playerInv, player) -> new ChestGUIMenu(id, playerInv, BlockPos.ZERO, player, gui); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java b/src/main/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java new file mode 100644 index 0000000..318cf67 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/menus/ChestGUIScreen.java @@ -0,0 +1,66 @@ +package com.zontreck.libzontreck.menus; + +import com.mojang.blaze3d.systems.RenderSystem; +import com.mojang.blaze3d.vertex.PoseStack; +import com.zontreck.libzontreck.LibZontreck; +import net.minecraft.client.gui.screens.inventory.AbstractContainerScreen; +import net.minecraft.client.renderer.GameRenderer; +import net.minecraft.network.chat.Component; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.entity.player.Inventory; +import net.minecraft.world.entity.player.Player; + +public class ChestGUIScreen extends AbstractContainerScreen { + public final Player player; + public final ChestGUIMenu menu; + private static final ResourceLocation TEXTURE = new ResourceLocation(LibZontreck.MOD_ID, "textures/gui/chest_gui.png"); + + + public ChestGUIScreen(ChestGUIMenu menu, Inventory playerInv, Component comp) + { + super(menu, playerInv, comp); + + this.menu = menu; + this.player = playerInv.player; + + this.leftPos = 0; + this.topPos=0; + + this.imageWidth = 191; + this.imageHeight = 82; + + this.titleLabelX = 32; + this.titleLabelY =5; + } + + @Override + public void render(PoseStack pGuiGraphics, int pMouseX, int pMouseY, float pPartialTick) { + this.renderBackground(pGuiGraphics); + super.render(pGuiGraphics, pMouseX, pMouseY, pPartialTick); + this.renderTooltip(pGuiGraphics, pMouseX, pMouseY); + } + + @Override + protected void init() { + super.init(); + + this.inventoryLabelX = 32; + this.inventoryLabelY = 5; + } + + @Override + protected void renderBg(PoseStack guiGraphics, float v, int i, int i1) { + renderBackground(guiGraphics); + RenderSystem.setShader(GameRenderer::getPositionTexShader); + RenderSystem.setShaderColor(1,1,1,1); + RenderSystem.setShaderTexture(0, TEXTURE); + + blit(guiGraphics, this.leftPos, this.topPos, 0, 0, imageWidth, imageHeight); + } + + @Override + protected void renderLabels(PoseStack pGuiGraphics, int pMouseX, int pMouseY) { + + drawString(pGuiGraphics, this.font, this.title, this.titleLabelX, this.titleLabelY, 4210752); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/ModMessages.java b/src/main/java/com/zontreck/libzontreck/networking/ModMessages.java new file mode 100644 index 0000000..68edb4d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/ModMessages.java @@ -0,0 +1,75 @@ +package com.zontreck.libzontreck.networking; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.networking.packets.S2CCloseChestGUI; +import com.zontreck.libzontreck.networking.packets.S2CPlaySoundPacket; +import com.zontreck.libzontreck.networking.packets.S2CServerAvailable; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.network.NetworkDirection; +import net.minecraftforge.network.NetworkRegistry; +import net.minecraftforge.network.PacketDistributor; +import net.minecraftforge.network.simple.SimpleChannel; + +import java.util.concurrent.atomic.AtomicInteger; + +/** + * Networking system! + */ +public class ModMessages { + private static SimpleChannel INSTANCE; + /** + * INTERNAL USE ONLY + */ + private static AtomicInteger PACKET_ID=new AtomicInteger(0); + public static int id() + { + return PACKET_ID.getAndIncrement(); + } + public static void register() + { + SimpleChannel net = NetworkRegistry.ChannelBuilder.named(new ResourceLocation(LibZontreck.MOD_ID, "messages")) + .networkProtocolVersion(()->"1.0") + .clientAcceptedVersions(s->true) + .serverAcceptedVersions(s->true) + .simpleChannel(); + + INSTANCE=net; + + + net.messageBuilder(S2CPlaySoundPacket.class, PACKET_ID.getAndIncrement(), NetworkDirection.PLAY_TO_CLIENT) + .decoder(S2CPlaySoundPacket::new) + .encoder(S2CPlaySoundPacket::toBytes) + .consumerMainThread(S2CPlaySoundPacket::handle) + .add(); + + net.messageBuilder(S2CCloseChestGUI.class, PACKET_ID.getAndIncrement(), NetworkDirection.PLAY_TO_CLIENT) + .decoder(S2CCloseChestGUI::new) + .encoder(S2CCloseChestGUI::toBytes) + .consumerMainThread(S2CCloseChestGUI::handle) + .add(); + + net.messageBuilder(S2CServerAvailable.class, PACKET_ID.getAndIncrement(), + NetworkDirection.PLAY_TO_CLIENT) + .decoder(S2CServerAvailable::new) + .encoder(S2CServerAvailable::toBytes) + .consumerMainThread(S2CServerAvailable::handle) + .add(); + + } + + + public static void sendToServer(MSG message){ + INSTANCE.sendToServer(message); + } + + public static void sendToPlayer(MSG message, ServerPlayer player) + { + INSTANCE.send(PacketDistributor.PLAYER.with(()->player), message); + } + + public static void sendToAll(MSG message) + { + INSTANCE.send(PacketDistributor.ALL.noArg(), message); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/NetworkEvents.java b/src/main/java/com/zontreck/libzontreck/networking/NetworkEvents.java new file mode 100644 index 0000000..8046650 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/NetworkEvents.java @@ -0,0 +1,5 @@ +package com.zontreck.libzontreck.networking; + +public class NetworkEvents +{ +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/chestGUI.md b/src/main/java/com/zontreck/libzontreck/networking/chestGUI.md new file mode 100644 index 0000000..e166384 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/chestGUI.md @@ -0,0 +1,21 @@ +About Chest GUI +===== + +A chest GUI is basically a dynamic menu that uses items and the standard chest layout to present a list of options in game. + +These items cannot be removed from the chest and the click event is instead passed on as a ChestGUIEvent. Because the mod requesting this might not be on the client, the event is sent in both locations by utilizing a network packet. + + + +ChestGUIEvent +==== + +This event is the parent of several other events. + +OptionInteractEvent +---- +This event gets dispatched on both the client and server when a option is interacted with. + +OptionUpdateEvent +---- +To be sent by the mod originating this dynamic menu. This event will instruct the ChestGUI to update a item, or multiple items after a interaction, or something else occuring. If the GUI is not open, this event gets ignored. This event should only be sent when we know the GUI is actually open! \ No newline at end of file diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/IPacket.java b/src/main/java/com/zontreck/libzontreck/networking/packets/IPacket.java new file mode 100644 index 0000000..a147684 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/packets/IPacket.java @@ -0,0 +1,35 @@ +package com.zontreck.libzontreck.networking.packets; + +import java.util.function.Supplier; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraftforge.network.NetworkDirection; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.network.simple.SimpleChannel; + +public interface IPacket { + void deserialize(CompoundTag data); + + void serialize(CompoundTag data); + + void toBytes(FriendlyByteBuf buf); + + boolean handle(Supplier supplier); + + /** + * @return The network direction of the packet + */ + NetworkDirection getDirection(); + + /** + * EXAMPLE: + * chan.messageBuilder(S2CPlaySoundPacket.class, ModMessages.id(), getDirection()) + * .encoder(S2CPlaySoundPacket::toBytes) + * .decoder(S2CPlaySoundPacket::new) + * .consumer(S2CPlaySoundPacket::handle) + * .add(); + * @param chan + */ + void register(SimpleChannel chan); +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java new file mode 100644 index 0000000..b62d6ff --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CCloseChestGUI.java @@ -0,0 +1,38 @@ +package com.zontreck.libzontreck.networking.packets; + +import com.zontreck.libzontreck.menus.ChestGUIScreen; +import net.minecraft.client.Minecraft; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraftforge.network.NetworkEvent; + +import java.util.function.Supplier; + +public class S2CCloseChestGUI +{ + + public S2CCloseChestGUI() + { + + } + + public S2CCloseChestGUI(FriendlyByteBuf buf) + { + + } + + public void toBytes(FriendlyByteBuf buf) + { + + } + + public void handle(Supplier supplier) + { + NetworkEvent.Context ctx = supplier.get(); + + ctx.enqueueWork(()->{ + // Close the GUI + if(Minecraft.getInstance().screen instanceof ChestGUIScreen) + Minecraft.getInstance().setScreen(null); + }); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java new file mode 100644 index 0000000..0ce0177 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CPlaySoundPacket.java @@ -0,0 +1,69 @@ +package com.zontreck.libzontreck.networking.packets; + +import java.util.function.Supplier; + +import com.zontreck.libzontreck.util.BinUtil; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.client.Minecraft; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.sounds.SoundEvent; +import net.minecraftforge.network.NetworkDirection; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.network.NetworkEvent.Context; +import net.minecraftforge.network.simple.SimpleChannel; + +public class S2CPlaySoundPacket implements IPacket +{ + public ResourceLocation sound; + + public S2CPlaySoundPacket(FriendlyByteBuf buf) { + sound = buf.readResourceLocation(); + } + + public S2CPlaySoundPacket(ResourceLocation loc) { + sound=loc; + } + public S2CPlaySoundPacket(){} + + @Override + public void deserialize(CompoundTag data) { + + } + + @Override + public void serialize(CompoundTag data) { + } + + @Override + public void toBytes(FriendlyByteBuf buf) { + buf.writeResourceLocation(sound); + } + + @Override + public boolean handle(Supplier supplier) { + NetworkEvent.Context ctx=supplier.get(); + + ctx.enqueueWork(()->{ + // We are on the client now, enqueue the sound! + SoundEvent ev = new SoundEvent(sound); + + // Play sound for player! + Minecraft.getInstance().player.playSound(ev, 1, BinUtil.getARandomInstance().nextFloat(0, 1)); + }); + + return true; + } + + @Override + public NetworkDirection getDirection() { + return NetworkDirection.PLAY_TO_CLIENT; + } + + @Override + public void register(SimpleChannel chan) { + ServerUtilities.registerPacket(chan, S2CPlaySoundPacket.class, this, S2CPlaySoundPacket::new); + } + +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java new file mode 100644 index 0000000..1c5edee --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CServerAvailable.java @@ -0,0 +1,43 @@ +package com.zontreck.libzontreck.networking.packets; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.networking.ModMessages; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.network.NetworkEvent; + +import java.util.function.Supplier; + +public class S2CServerAvailable +{ + public S2CServerAvailable(FriendlyByteBuf buf) + { + // nothing! + } + + public S2CServerAvailable() + { + + } + + public void toBytes(FriendlyByteBuf buf) + { + + } + + public void handle(Supplier supplier) + { + NetworkEvent.Context context = supplier.get(); + + context.enqueueWork(()->{ + // We are now on the client + + LibZontreck.LIBZONTRECK_SERVER_AVAILABLE = true; + }); + } + + public void send(ServerPlayer player) + { + ModMessages.sendToPlayer(this, player); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java new file mode 100644 index 0000000..c45b43e --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletInitialSyncPacket.java @@ -0,0 +1,69 @@ +package com.zontreck.libzontreck.networking.packets; + +import com.zontreck.libzontreck.currency.Account; +import com.zontreck.libzontreck.currency.Bank; +import com.zontreck.libzontreck.currency.events.WalletSyncEvent; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.network.NetworkDirection; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.network.simple.SimpleChannel; + +import java.util.UUID; +import java.util.function.Supplier; + +public class S2CWalletInitialSyncPacket implements IPacket +{ + public Account act; + public S2CWalletInitialSyncPacket(FriendlyByteBuf buf) + { + act = new Account(buf.readNbt()); + } + public S2CWalletInitialSyncPacket(Account act) + { + this.act=act; + } + public S2CWalletInitialSyncPacket(UUID ID) + { + this.act= Bank.getAccount(ID); + } + public S2CWalletInitialSyncPacket(){} + + @Override + public void deserialize(CompoundTag data) { + + } + + @Override + public void serialize(CompoundTag data) { + + } + + @Override + public void toBytes(FriendlyByteBuf buf) { + buf.writeNbt(act.save()); + } + + @Override + public boolean handle(Supplier supplier) { + return ServerUtilities.handlePacket(supplier, new Runnable() { + @Override + public void run() { + MinecraftForge.EVENT_BUS.post(new WalletSyncEvent(act)); + + } + }); + } + + @Override + public NetworkDirection getDirection() { + return NetworkDirection.PLAY_TO_CLIENT; + } + + @Override + public void register(SimpleChannel chan) { + ServerUtilities.registerPacket(chan, S2CWalletInitialSyncPacket.class, this, S2CWalletInitialSyncPacket::new); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java new file mode 100644 index 0000000..2d75dd2 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/packets/S2CWalletUpdatedPacket.java @@ -0,0 +1,79 @@ +package com.zontreck.libzontreck.networking.packets; + +import com.zontreck.libzontreck.currency.Transaction; +import com.zontreck.libzontreck.currency.events.WalletUpdatedEvent; +import com.zontreck.libzontreck.util.ServerUtilities; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.network.NetworkDirection; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.network.simple.SimpleChannel; + +import java.util.UUID; +import java.util.function.Supplier; + +public class S2CWalletUpdatedPacket implements IPacket +{ + public UUID ID; + public Transaction tx; + public int balance; + public int oldBal; + + public S2CWalletUpdatedPacket(FriendlyByteBuf buf) + { + ID = buf.readUUID(); + tx = new Transaction(buf.readNbt()); + balance = buf.readInt(); + oldBal = buf.readInt(); + } + + public S2CWalletUpdatedPacket(UUID ID, Transaction tx, int bal, int old) + { + this.ID= ID; + this.tx=tx; + this.balance=bal; + oldBal=old; + } + + public S2CWalletUpdatedPacket(){} + + + @Override + public void deserialize(CompoundTag data) { + + } + + @Override + public void serialize(CompoundTag data) { + + } + + @Override + public void toBytes(FriendlyByteBuf buf) { + buf.writeUUID(ID); + buf.writeNbt(tx.save()); + buf.writeInt(balance); + buf.writeInt(oldBal); + } + + @Override + public boolean handle(Supplier supplier) { + return ServerUtilities.handlePacket(supplier, new Runnable() { + @Override + public void run() { + MinecraftForge.EVENT_BUS.post(new WalletUpdatedEvent(ID, oldBal, balance, tx)); + } + }); + } + + @Override + public NetworkDirection getDirection() { + return NetworkDirection.PLAY_TO_CLIENT; + } + + @Override + public void register(SimpleChannel chan) { + ServerUtilities.registerPacket(chan, S2CWalletUpdatedPacket.class, this, S2CWalletUpdatedPacket::new); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java b/src/main/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java new file mode 100644 index 0000000..28d9bc3 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/networking/structures/OpenGUIRequest.java @@ -0,0 +1,39 @@ +package com.zontreck.libzontreck.networking.structures; + +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.Tag; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.world.item.ItemStack; + +public class OpenGUIRequest { + public ResourceLocation ID; + public UUID playerID; + + public OpenGUIRequest(CompoundTag tag) + { + CompoundTag tags = tag.getCompound("id"); + + ID = new ResourceLocation(tags.getString("mod"), tags.getString("id")); + playerID = tag.getUUID("player"); + } + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putUUID("player", playerID); + CompoundTag tags = new CompoundTag(); + tags.putString("mod", ID.getNamespace()); + tags.putString("id", ID.getPath()); + + tag.put("id", tags); + + return tag; + } + + public OpenGUIRequest(){} +} diff --git a/src/main/java/com/zontreck/libzontreck/profiles/Profile.java b/src/main/java/com/zontreck/libzontreck/profiles/Profile.java new file mode 100644 index 0000000..3c3455d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/profiles/Profile.java @@ -0,0 +1,226 @@ +package com.zontreck.libzontreck.profiles; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.List; + +import com.zontreck.AriasEssentials; +import com.zontreck.homes.Homes; +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.events.ProfileCreatedEvent; +import com.zontreck.libzontreck.events.ProfileSavingEvent; +import com.zontreck.libzontreck.events.ProfileUnloadedEvent; +import com.zontreck.libzontreck.events.ProfileUnloadingEvent; +import com.zontreck.libzontreck.util.ServerUtilities; +import com.zontreck.util.EssentialsDatastore; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtIo; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.common.MinecraftForge; + +/** + * A libZontreck user profile + *

+ * This is used to contain common player data, as well as be capable of serializing the player's data and sending to/from the client. + */ +public class Profile { + public String username; + public String user_id; + public String prefix; + public String nickname; + public String name_color; // ChatColor.X + public String prefix_color; + public String chat_color; + public Boolean flying; + public int available_vaults; + public int deaths; + public Homes homes; + + + public ServerPlayer player; + private File accessor; + private CompoundTag miscData; + public CompoundTag NBT; + + public static final Path BASE; + public static final Profile SYSTEM; + static{ + BASE = EssentialsDatastore.of("profiles", true); + + + SYSTEM = new Profile("SYSTEM", "", "SYSTEM", ChatColor.DARK_RED, LibZontreck.NULL_ID.toString(), "", "", false, 0, null, 0, null, null, new CompoundTag(), new Homes(LibZontreck.NULL_ID.toString())); + } + + public Profile(String username, String prefix, String nickname, String name_color, String ID, String prefix_color, String chat_color, Boolean isFlying, int vaults, File vaultFile, int deathCount, ServerPlayer player, CompoundTag misc, CompoundTag NBT, Homes homes) { + this.username = username; + this.prefix = prefix; + this.nickname = nickname; + this.name_color = name_color; + this.user_id = ID; + this.prefix_color = prefix_color; + this.chat_color = chat_color; + this.flying=isFlying; + this.available_vaults=vaults; + this.deaths=deathCount; + this.player=player; + miscData = misc; + this.NBT = NBT; + this.homes = homes; + + + this.accessor = vaultFile; + } + + public boolean runSanityChecks() + { + if(player == null) return false; + return true; + } + + + /** + * Gets, or loads from persistent data, the user's LibZ profile + * @param UUID Player ID + * @return Profile + * @throws UserProfileNotYetExistsException When the profile has not yet been created + */ + public static Profile get_profile_of(String UUID) throws UserProfileNotYetExistsException + { + if(LibZontreck.PROFILES.containsKey(UUID)){ + Profile prof = LibZontreck.PROFILES.get(UUID); + if(!prof.runSanityChecks()) + { + prof.player = ServerUtilities.getPlayerByID(UUID); + } + return prof; + }else { + // Create or load profile + Path userProfile = BASE.resolve(UUID); + if(userProfile.toFile().exists()) + { + // Load profile data + File ace = userProfile.resolve("profile.nbt").toFile(); + try { + Profile actual = load(NbtIo.read(ace), ace, ServerUtilities.getPlayerByID(UUID)); + LibZontreck.PROFILES.put(UUID, actual); + return actual; + } catch (IOException e) { + throw new UserProfileNotYetExistsException(UUID); + } catch (NullPointerException e) + { + throw new UserProfileNotYetExistsException(UUID); + } + + }else { + // Create directory, then throw a exception so a new profile gets created + try { + Files.createDirectories(userProfile); + } catch (IOException e) { + e.printStackTrace(); + } + throw new UserProfileNotYetExistsException(UUID); + } + } + } + + private static Profile load(CompoundTag tag, File accessor, ServerPlayer player) + { + return new Profile(tag.getString("user"), tag.getString("prefix"), tag.getString("nick"), tag.getString("nickc"), tag.getString("id"), tag.getString("prefixc"), tag.getString("chatc"), tag.getBoolean("flying"), tag.getInt("vaults"), accessor, tag.getInt("deaths"), player, tag.getCompound("misc"), tag.getCompound("data"), Homes.deserialize(tag.getCompound("homes"))); + } + + /** + * Generate a new user profile. + * + * @param player The player to generate the profile for + */ + private static void generateNewProfile(ServerPlayer player) + { + + Path userProfile = BASE.resolve(player.getStringUUID()); + if(userProfile.toFile().exists()) + { + // Load profile data + File ace = userProfile.resolve("profile.nbt").toFile(); + Profile template = new Profile(player.getName().getString(), "Member", player.getDisplayName().getString(), ChatColor.GREEN, player.getStringUUID(), ChatColor.AQUA, ChatColor.WHITE, false, 0, ace, 0, player, new CompoundTag(), new CompoundTag(), new Homes(player.getStringUUID())); + template.commit(); + + LibZontreck.PROFILES.put(player.getStringUUID(), template); + + + MinecraftForge.EVENT_BUS.post(new ProfileCreatedEvent(template)); + return; + }else { + try { + Files.createDirectories(userProfile); + } catch (IOException e) { + e.printStackTrace(); + } + + generateNewProfile(player); + } + } + + public static void unload(Profile prof) + { + LibZontreck.PROFILES.remove(prof.user_id); + + + if(MinecraftForge.EVENT_BUS.post(new ProfileUnloadingEvent(prof, prof.player))) + { + prof.commit(); + } + LibZontreck.LOGGER.info("Profile is unloaded for "+prof.username); + MinecraftForge.EVENT_BUS.post(new ProfileUnloadedEvent(prof.user_id)); + prof=null; + } + + /** + * Creates a profile if it does not yet exist + * @param play Player + * @return The existing, or new, profile instance. + */ + public static Profile factory(ServerPlayer play) + { + try { + return get_profile_of(play.getStringUUID()); + } catch (UserProfileNotYetExistsException e) { + generateNewProfile(play); + return factory(play); + } + } + + /** + * Save the profile to disk + */ + public void commit() + { + // Save data to FileTree + CompoundTag serial = new CompoundTag(); + serial.putString("user", username); + serial.putString("prefix", prefix); + serial.putString("nick", nickname); + serial.putString("id", user_id); + serial.putString("nickc", name_color); + serial.putString("prefixc", prefix_color); + serial.putString("chatc", chat_color); + serial.putBoolean("flying", flying); + serial.putInt("vaults", available_vaults); + serial.putInt("deaths", deaths); + ProfileSavingEvent event = new ProfileSavingEvent(this, miscData); + MinecraftForge.EVENT_BUS.post(event); + serial.put("misc", event.tag); + serial.put("data", NBT); + serial.put("homes", homes.serialize()); + + + + try { + NbtIo.write(serial, accessor); + } catch (IOException e) { + e.printStackTrace(); + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java b/src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java new file mode 100644 index 0000000..fae5a15 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/profiles/UserProfileNotYetExistsException.java @@ -0,0 +1,9 @@ +package com.zontreck.libzontreck.profiles; + +public class UserProfileNotYetExistsException extends Exception{ + String playerID; + public UserProfileNotYetExistsException(String id){ + super("A user profile does not yet exist"); + playerID=id; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java b/src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java new file mode 100644 index 0000000..7c095d7 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/types/ModMenuTypes.java @@ -0,0 +1,29 @@ +package com.zontreck.libzontreck.types; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.menus.ChestGUIMenu; +import net.minecraft.world.inventory.AbstractContainerMenu; +import net.minecraft.world.inventory.MenuType; +import net.minecraftforge.common.extensions.IForgeMenuType; +import net.minecraftforge.eventbus.api.IEventBus; +import net.minecraftforge.network.IContainerFactory; +import net.minecraftforge.registries.DeferredRegister; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class ModMenuTypes +{ + public static DeferredRegister> REGISTRY = DeferredRegister.create(ForgeRegistries.MENU_TYPES, LibZontreck.MOD_ID); + + public static RegistryObject> CHEST_GUI_MENU = registerMenuType(ChestGUIMenu::new, "chestgui"); + + private static RegistryObject> registerMenuType(IContainerFactory factory, String name) + { + return REGISTRY.register(name, ()-> IForgeMenuType.create(factory)); + } + + public static void register(IEventBus bus) + { + REGISTRY.register(bus); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/BinUtil.java b/src/main/java/com/zontreck/libzontreck/util/BinUtil.java new file mode 100644 index 0000000..d17c985 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/BinUtil.java @@ -0,0 +1,59 @@ +package com.zontreck.libzontreck.util; + +import java.time.Instant; +import java.util.ArrayList; +import java.util.List; +import java.util.Random; + +public class BinUtil { + private static final char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray(); + + /** + * Converts a byte array to hexadecimal + * @param bytes + * @return + */ + public static String bytesToHex(byte[] bytes) { + char[] hexChars = new char[bytes.length * 2]; + for (int j = 0; j < bytes.length; j++) { + int v = bytes[j] & 0xFF; + hexChars[j * 2] = HEX_ARRAY[v >>> 4]; + hexChars[j * 2 + 1] = HEX_ARRAY[v & 0x0F]; + } + return new String(hexChars); + } + + public static byte[] hexToBytes(String hexStr) + { + List bList = new ArrayList<>(); + for(int i=0;i b) + { + byte[] ret = new byte[b.size()]; + int i=0; + for(byte bx : b) + { + ret[i] = bx; + i++; + } + return ret; + } + + /** + * @return A random instance backed by the time including milliseconds as the seed. + */ + public static Random getARandomInstance() + { + return new Random(Instant.now().toEpochMilli()); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java b/src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java new file mode 100644 index 0000000..dea2e2c --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/BlocksUtil.java @@ -0,0 +1,29 @@ +package com.zontreck.libzontreck.util; + +import com.zontreck.libzontreck.vectors.Vector3d; +import net.minecraft.server.level.ServerLevel; + +import java.util.ArrayList; +import java.util.List; + +/** + * Contains helper functions for block position calculations + */ +public class BlocksUtil +{ + /** + * Gathers a list of positions for like-blocks in a vein. This can accept a limit of -1, but has a hard cap at 512 blocks + * @param level The level to find the vein in + * @param start Starting position for vein + * @param limit The applicable limit for vein detection + * @return List of positions for the vein + */ + public static List VeinOf(ServerLevel level, Vector3d start, int limit) + { + List ret = new ArrayList<>(); + + + + return ret; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java b/src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java new file mode 100644 index 0000000..cdea9b5 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/ChatHelpers.java @@ -0,0 +1,155 @@ +package com.zontreck.libzontreck.util; + +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.util.UUID; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.chat.ChatColor; +import net.minecraft.network.chat.*; +import net.minecraft.server.MinecraftServer; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.entity.player.Player; + +public class ChatHelpers { + public static void broadcastActionBar(Component message, MinecraftServer server) + { + server.execute(new Runnable(){ + @Override + public void run() + { + for (ServerPlayer player : server.getPlayerList().getPlayers()) { + player.displayClientMessage(message, true); + } + LibZontreck.LOGGER.info("[ALL] "+message.getContents()); + } + }); + } + + public static void broadcast(Component message, MinecraftServer server) + { + server.execute(new Runnable(){ + @Override + public void run() + { + for (ServerPlayer player : server.getPlayerList().getPlayers()) { + player.displayClientMessage(message, false); + } + LibZontreck.LOGGER.info("[ALL] "+message.getContents()); + } + }); + } + + public static void broadcastTo(UUID ID, Component message, MinecraftServer server, boolean actionBar) + { + server.execute(new Runnable(){ + @Override + public void run() + { + ServerPlayer play = server.getPlayerList().getPlayer(ID); + if(play==null)return; + + + play.displayClientMessage(message, actionBar); + + LibZontreck.LOGGER.info("[SERVER] -> ["+play.getName().getContents()+"] "+message.getContents()); + } + }); + } + + public static void broadcastTo(UUID ID, Component message, MinecraftServer server) + { + broadcastTo(ID, message, server, false); + } + + public static void broadcastToAbove(UUID ID, Component message, MinecraftServer server) + { + broadcastTo(ID, message, server, true); + } + public static void broadcastTo(Player ID, Component message, MinecraftServer server) + { + broadcastTo(ID.getUUID(), message, server, false); + } + + public static void broadcastToAbove(Player ID, Component message, MinecraftServer server) + { + broadcastTo(ID.getUUID(), message, server, true); + } + + public static String hashOfMd5(String input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("md5"); + md5.update(input.getBytes()); + return asHex(md5.digest()); + } + public static String hashOfSha256(String input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("sha-256"); + md5.update(input.getBytes()); + return asHex(md5.digest()); + } + + public static String hashOfMd5(byte[] input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("md5"); + md5.update(input); + return asHex(md5.digest()); + } + public static String hashOfSha256(byte[] input) throws NoSuchAlgorithmException { + MessageDigest md5 = MessageDigest.getInstance("sha-256"); + md5.update(input); + return asHex(md5.digest()); + } + + public static String asHex(byte[] input) + { + return BinUtil.bytesToHex(input); + } + + /** + * Returns the output with colors applied, and chat entries replaced using [number] as the format + * @param input + * @param inputs Entries to replace with in input + * @return + */ + public static MutableComponent macro(String input, String... inputs) + { + return Component.literal(macroize(input,inputs)); + } + /** + * Returns the output with colors applied, and chat entries replaced using [number] as the format + * @param input + * @param inputs Entries to replace with in input + * @return + */ + public static String macroize(String input, String... inputs) + { + String output = input; + for (int i = 0; i < inputs.length; i++) { + String inp = inputs[i]; + + output = output.replaceAll("\\["+String.valueOf(i)+"]", inp); + } + + return ChatColor.doColors(output); + } + + /** + * Merges the styles + * @param comp The original component + * @param ce Click event to add to the component + * @return Component + Merged Event + */ + public static MutableComponent applyClickEvent(MutableComponent comp, ClickEvent ce) + { + return comp.setStyle(comp.getStyle().withClickEvent(ce)); + } + + /** + * Merges the styles + * @param comp The original component + * @param ce Hover event to add to the component + * @return Component + Merged Event + */ + public static MutableComponent applyHoverEvent(MutableComponent comp, HoverEvent ce) + { + return comp.setStyle(comp.getStyle().withHoverEvent(ce)); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java b/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java new file mode 100644 index 0000000..c6c41b4 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/FileTreeDatastore.java @@ -0,0 +1,49 @@ +package com.zontreck.libzontreck.util; + +import java.io.File; +import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; + +import net.minecraftforge.fml.loading.FMLPaths; + +public class FileTreeDatastore { + private static final Path BASE; + + static{ + Path X = FMLPaths.CONFIGDIR.get().resolve("arias_mods"); + BASE=X; + if(!BASE.toFile().exists()) + { + try { + Files.createDirectory(BASE); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + + public static String get() + { + return BASE.toString(); + } + + public static Path of(String nick) + { + return BASE.resolve(nick); + } + + public static List getListOfFiles(Path files) + { + List fileList = new ArrayList<>(); + + File[] entries = files.toFile().listFiles(); + + for (File file : entries) { + fileList.add(file); + } + return fileList; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/HttpHelper.java b/src/main/java/com/zontreck/libzontreck/util/HttpHelper.java new file mode 100644 index 0000000..88411a0 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/HttpHelper.java @@ -0,0 +1,22 @@ +package com.zontreck.libzontreck.util; + +import java.net.URL; +import java.util.Scanner; + +public class HttpHelper { + public static String getFrom(URL url) + { + String data = ""; + try (Scanner s = new Scanner(url.openStream())) + { + s.useDelimiter("\\A"); + data = s.hasNext() ? s.next() : ""; + }catch(Exception e) + { + + } + + + return data; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/ItemUtils.java b/src/main/java/com/zontreck/libzontreck/util/ItemUtils.java new file mode 100644 index 0000000..124de48 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/ItemUtils.java @@ -0,0 +1,65 @@ +package com.zontreck.libzontreck.util; + +import java.util.*; + +import net.minecraft.core.Registry; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.Tag; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.enchantment.Enchantment; +import net.minecraft.world.item.enchantment.EnchantmentHelper; +import net.minecraftforge.registries.ForgeRegistries; + +public class ItemUtils { + public static Map getEnchantments(ItemStack stack) + { + + //ListTag enchants = stack.getEnchantmentTags(); + Map enchantments = EnchantmentHelper.getEnchantments(stack); + return enchantments; + + /*Map enchantments = new HashMap<>(); + Iterator enchantsIterator = enchants.iterator(); + while(enchantsIterator.hasNext()) + { + CompoundTag theTag = (CompoundTag)enchantsIterator.next(); + Enchantment enchant = EnchantmentHelper. + Enchantment ench = .getOptional(EnchantmentHelper.getEnchantmentId(theTag)).get(); + + Integer level = EnchantmentHelper.getEnchantmentLevel(theTag); + enchantments.put(ench, level); + + } + + return enchantments;*/ + } + + public static Integer getEnchantmentLevel(Enchantment ench, ItemStack stack) + { + Integer ret = 0; + + try{ + + Map enchants = getEnchantments(stack); + ret=enchants.get(ench); + }catch(Exception e) + { + ret =0; + }finally{ + if(ret == null)ret =0; + } + + return ret; + } + + public static List getPlayerInventory(ServerPlayer player) { + List ret = new ArrayList<>(); + for(int i =0;i } + diff --git a/src/main/java/com/zontreck/libzontreck/util/PositionUtil.java b/src/main/java/com/zontreck/libzontreck/util/PositionUtil.java new file mode 100644 index 0000000..3f808f4 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/PositionUtil.java @@ -0,0 +1,156 @@ +package com.zontreck.libzontreck.util; + +import com.zontreck.libzontreck.api.Vector3; +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.Vector3i; + +import java.util.ArrayList; +import java.util.Iterator; +import java.util.List; + +/** + * Provides helper functions for position related things + */ +public class PositionUtil +{ + + public static List makeCube(Vector3 p1, Vector3 p2) + { + List vecs = new ArrayList<>(); + Vector3 work = new Vector3d(); + Vector3d v1 = p1.asVector3d(); + Vector3d v2 = p2.asVector3d(); + + double xx = v1.x; + double yy = v1.y; + double zz = v1.z; + + int yState = 0; + int zState = 0; + int xState = 0; + + for(xx = Math.round(v1.x); (xx != Math.round(v2.x) && xState != 2);) + { + for(zz = Math.round(v1.z); (zz != Math.round(v2.z) && zState != 2);) + { + for(yy = Math.round(v1.y); (yy != Math.round(v2.y) && yState != 2);) + { + work = new Vector3d(xx, yy, zz); + + if(!vecs.contains(work)) vecs.add(work); + + if(yy > v2.y) + { + yy -= 1.0; + if(yy == Math.round(v2.y) && yState == 0) + { + yState++; + }else{ + if(yState == 1) + { + yState ++; + } + } + } else if(yy < v2.y) + { + yy += 1.0; + if(yy == Math.round(v2.y) && yState == 0){ + yState ++; + }else { + if(yState == 1)yState++; + } + } + } + + yState=0; + work = new Vector3d(xx,yy,zz); + + if(!vecs.contains(work)) vecs.add(work); + + if(zz > v2.z) + { + zz -= 1.0; + + if(zz == Math.round(v2.z) && zState == 0)zState++; + else{ + if(zState == 1)zState++; + } + }else if(zz < v2.z) + { + zz += 1.0; + + if(zz == Math.round(v2.z) && zState == 0)zState++; + else { + if(zState==1)zState++; + } + } + } + + zState=0; + work = new Vector3d(xx,yy,zz); + + if(!vecs.contains(work)) vecs.add(work); + + if(xx > v2.x) + { + xx -= 1.0; + + if(xx == Math.round(v2.x) && xState == 0) xState++; + else{ + if(xState == 1)xState++; + } + }else if(xx < v2.x) + { + xx += 1.0; + + if(xx == Math.round(v2.x) && xState==0)xState++; + else{ + if(xState==1)xState++; + } + } + } + + return vecs; + } + + + public static List sortAscending(List vecs) + { + + List copy = new ArrayList<>(vecs); + List sorted = new ArrayList<>(); + + + while(copy.size()>0) + { + Vector3 lowest = findFirstLowestPosition(copy); + copy.remove(lowest); + sorted.add(lowest); + } + + return sorted; + } + + public static Vector3 findFirstLowestPosition(List vecs) + { + + Vector3i lowest = new Vector3i(0, 500, 0); + List copy = new ArrayList<>(vecs); + + Iterator it = copy.iterator(); + while(it.hasNext()) + { + Vector3i entry = it.next().asVector3i(); + if(entry.y < lowest.y) + { + lowest = entry; + it.remove(); + }else it.remove(); + } + + return lowest; + + } + + +} diff --git a/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java b/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java new file mode 100644 index 0000000..64d5942 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/SNbtIo.java @@ -0,0 +1,45 @@ +package com.zontreck.libzontreck.util; + +import com.mojang.brigadier.exceptions.CommandSyntaxException; +import com.zontreck.ariaslib.util.FileIO; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; + +import java.io.File; +import java.nio.file.Path; + +/** + * Provides helpers for reading and writing snbt to file + */ +public class SNbtIo +{ + /** + * Read the file at the path, and deserialize from snbt + * @param path The file to load + * @return The deserialized compound tag, or a blank tag + */ + public static CompoundTag loadSnbt(Path path) + { + if(!path.toFile().exists()) + return new CompoundTag(); + else { + File fi = path.toFile(); + try { + return NbtUtils.snbtToStructure(FileIO.readFile(fi.getAbsolutePath())); + } catch (CommandSyntaxException e) { + return new CompoundTag(); + } + } + } + + /** + * Writes the tag to the file specified + * @param path The file to write + * @param tag The tag to serialize + */ + public static void writeSnbt(Path path, CompoundTag tag) + { + String snbt = NbtUtils.structureToSnbt(tag); + FileIO.writeFile(path.toFile().getAbsolutePath(), snbt); + } +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java b/src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java new file mode 100644 index 0000000..7de8ada --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/ServerUtilities.java @@ -0,0 +1,100 @@ +package com.zontreck.libzontreck.util; + +import java.util.UUID; +import java.util.function.Function; +import java.util.function.Supplier; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.exceptions.InvalidSideException; +import com.zontreck.libzontreck.networking.ModMessages; +import com.zontreck.libzontreck.networking.packets.IPacket; +import net.minecraft.network.FriendlyByteBuf; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.fml.LogicalSide; +import net.minecraftforge.network.NetworkEvent; +import net.minecraftforge.network.simple.SimpleChannel; +import net.minecraftforge.server.ServerLifecycleHooks; + +public class ServerUtilities +{ + /** + * This function only exists on the server + * @param id Player ID + * @return The server player associated with the ID + */ + public static ServerPlayer getPlayerByID(String id) + { + return ServerLifecycleHooks.getCurrentServer().getPlayerList().getPlayer(UUID.fromString(id)); + } + + /** + * Handles the registration of packets + * @param + * @param channel + * @param type + * @param inst + * @param decoder + */ + public static void registerPacket(SimpleChannel channel, Class type, X inst, Function decoder) + { + IPacket packet = (IPacket) inst; + channel.messageBuilder(type, ModMessages.id(), packet.getDirection()) + .decoder(decoder) + .encoder(X::toBytes) + .consumerMainThread(X::handle) + .add(); + } + + /** + * Handles the tedious and repetitive actions in the handle packet segment of code + * @param context + * @param run + * @return + */ + public static boolean handlePacket(Supplier context, Runnable run) + { + NetworkEvent.Context ctx = context.get(); + ctx.enqueueWork(run); + + return true; + } + + /** + * Checks if the mod is running on the server + * @return True if the mod is on the server + */ + public static boolean isServer() + { + return (LibZontreck.CURRENT_SIDE == LogicalSide.SERVER); + } + + /** + * Checks if the mod is running on the client + * @return True if the mod is on the client + */ + public static boolean isClient() + { + return !isServer(); + } + + public static boolean playerIsOffline(UUID ID) throws InvalidSideException { + if(isClient())throw new InvalidSideException("This can only be called on the server"); + + if(ServerLifecycleHooks.getCurrentServer().getPlayerList().getPlayer(ID) == null) return true; + else return false; + } + + /** + * Checks if the user has operator permissions on the server + * @param ID The player ID + * @return True if the player is op + */ + public static boolean playerIsOp(UUID ID) + { + ServerPlayer player = getPlayerByID(ID.toString()); + if(player.hasPermissions(player.getServer().getOperatorUserPermissionLevel())) + { + return true; + }else return false; + } +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/libzontreck/util/TagUtils.java b/src/main/java/com/zontreck/libzontreck/util/TagUtils.java new file mode 100644 index 0000000..62b8b14 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/TagUtils.java @@ -0,0 +1,45 @@ +package com.zontreck.libzontreck.util; + +import net.minecraft.nbt.CompoundTag; + +public class TagUtils +{ + /** + * Get either the entry, or supply a default value + * @param tag + * @param entry + * @param other + * @return + */ + public static int intOr(CompoundTag tag, String entry, int other) + { + if(tag.contains(entry)) return tag.getInt(entry); + else return other; + } + + /** + * Get either the entry, or supply a default value + * @param tag + * @param entry + * @param other + * @return + */ + public static String strOr(CompoundTag tag, String entry, String other) + { + if(tag.contains(entry)) return tag.getString(entry); + else return other; + } + + /** + * Get either the entry, or supply a default value + * @param tag + * @param entry + * @param other + * @return + */ + public static boolean boolOr(CompoundTag tag, String entry, boolean other) + { + if(tag.contains(entry)) return tag.getBoolean(entry); + else return other; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java b/src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java new file mode 100644 index 0000000..ea2b919 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/CreditsEntry.java @@ -0,0 +1,57 @@ +package com.zontreck.libzontreck.util.heads; + +import com.zontreck.libzontreck.chat.ChatColor; +import com.zontreck.libzontreck.lore.LoreContainer; +import com.zontreck.libzontreck.lore.LoreEntry; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.util.heads.HeadCache.HeadCacheItem; +import net.minecraft.world.item.ItemStack; + +public class CreditsEntry { + public HeadCacheItem player; + public String name; + public String role; + public String description; + + public CreditsEntry(HeadCacheItem item, String name, String role, String descript){ + player=item; + this.name=name; + this.role=role; + this.description=descript; + } + + /** + * Compiles all the information into the head item, then applies the Lore Entry with the role the person has played, and a description + * @return + */ + public ItemStack compile() + { + ItemStack stack = player.getAsItem(""); + stack.setHoverName(ChatHelpers.macro(name)); + LoreContainer contain = new LoreContainer(stack); + contain.clear(); + LoreEntry.Builder builder = new LoreEntry.Builder(); + builder = builder.text(ChatColor.doColors("!Dark_Purple!Role: "+role + "\n")) + .bold(true) + .italic(true); + contain.miscData.loreData.add(builder.build()); + + builder = new LoreEntry.Builder().italic(true) + .text(ChatColor.doColors("!White!About: !Dark_Green!"+description + "\n")); + + contain.miscData.loreData.add(builder.build()); + + contain.commitLore(); + + return stack; + } + /** + * Generates a written book that can serve as an about-page about the person being creditted. + * @return + */ + public ItemStack compileInfosBook() + { + // Will return a patchouli book + return null; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java b/src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java new file mode 100644 index 0000000..9558a30 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/HeadCache.java @@ -0,0 +1,213 @@ +package com.zontreck.libzontreck.util.heads; + +import java.io.IOException; +import java.nio.file.Path; +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.ListTag; +import net.minecraft.nbt.NbtIo; +import net.minecraft.nbt.Tag; +import net.minecraft.network.chat.Component; +import net.minecraft.world.item.ItemStack; +import net.minecraft.world.item.Items; +import net.minecraft.world.item.PlayerHeadItem; + +public class HeadCache +{ + public static final Path CACHE_FILE; + public static final HeadCache CACHE = new HeadCache(); + public List items = new ArrayList<>(); + + public class HeadCacheItem + { + public UUID owner; + public String texture; + public String name; + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putUUID("id", owner); + tag.putString("texture", texture); + tag.putString("name", name); + + return tag; + } + + public HeadCacheItem(CompoundTag tag) + { + owner = tag.getUUID("id"); + texture = tag.getString("texture"); + name = tag.getString("name"); + } + + private HeadCacheItem() + {} + + public ItemStack getAsItem(String itemName) + { + ItemStack head = new ItemStack(Items.PLAYER_HEAD, 1); + + CompoundTag skullOwner = new CompoundTag(); + skullOwner.putUUID("Id", owner); + + CompoundTag properties = new CompoundTag(); + ListTag textures = new ListTag(); + CompoundTag item = new CompoundTag(); + item.putString("Value", texture); + textures.add(item); + properties.put("textures", textures); + + skullOwner.put("Properties", properties); + head.addTagElement(PlayerHeadItem.TAG_SKULL_OWNER, skullOwner); + + if(itemName == "") + { + + Component headname = ChatHelpers.macro("[0]'s Head", name); + head.setHoverName(headname); + }else { + head.setHoverName(ChatHelpers.macro(itemName)); + } + + return head; + + } + + public static UUID toNewID(final String input) { + return UUID.fromString(input.replaceFirst("(\\w{8})(\\w{4})(\\w{4})(\\w{4})(\\w{12})", "$1-$2-$3-$4-$5")); + } + public String getOldID() + { + return owner.toString().replaceAll("-", ""); + } + } + + static{ + CACHE_FILE = LibZontreck.BASE_CONFIG.resolve("head_cache.nbt"); + + if(CACHE_FILE.toFile().exists()) + { + // Deserialize heads + try { + CompoundTag tag = NbtIo.read(CACHE_FILE.toFile()); + CACHE.initFromCache(tag); + } catch (IOException e) { + e.printStackTrace(); + } + }else { + CACHE.resetCache(); + } + + + List creds = new ArrayList<>(); + + creds.add( + new CreditsEntry(HeadUtilities.cachedLookup("zontreck"), "Aria (zontreck)", "Developer, Designer, Artist", "Aria is the primary developer and project maintainer")); + creds.add(new CreditsEntry(HeadUtilities.cachedLookup("firesyde424"), "firesyde424", "Tester", "Firesyde has helped to test my mods and given feedback.")); + creds.add(new CreditsEntry(HeadUtilities.cachedLookup("EmberCat42"), "EmberCat42", "Tester", "EmberCat42 has helped to test and reported on a major bug in Night Vision")); + + CREDITS = creds; + + + CACHE.compile(); + } + + private void initFromCache(CompoundTag tag) + { + ListTag heads = tag.getList("heads", Tag.TAG_COMPOUND); + + for (Tag tag2 : heads) { + CompoundTag tag3 = (CompoundTag)tag2; + items.add(new HeadCacheItem(tag3)); + } + } + + public void saveCache() + { + try { + NbtIo.write(serialize(), CACHE_FILE.toFile()); + } catch (IOException e) { + e.printStackTrace(); + } + } + + public CompoundTag serialize() + { + ListTag heads = new ListTag(); + for (HeadCacheItem item : items) { + heads.add(item.serialize()); + } + + CompoundTag tag = new CompoundTag(); + tag.put("heads", heads); + + return tag; + } + + /** + * Adds a new head to the cache + * @param owner + * @param texture + * @param name + * @return The item added to the cache + * @return Null if not added! + */ + public HeadCacheItem addToCache(UUID owner, String texture, String name) + { + HeadCacheItem item = new HeadCacheItem(); + item.name=name; + item.texture=texture; + item.owner=owner; + if(!hasHead(name)) + { + items.add(item); + saveCache(); + return item; + } + return null; + } + + /** + * Initializes the cache fresh using the default heads for the developer(s), contributors/testers, and patreon supporters + */ + public void resetCache() + { + HeadUtilities.get("zontreck", ""); + HeadUtilities.get("PossumTheWarrior", ""); + HeadUtilities.get("GemMD", ""); + } + + public List compiled = new ArrayList<>(); + public static final List CREDITS; + public void compile() + { + compiled.clear(); + + for (CreditsEntry entry : CREDITS) { + compiled.add(entry.compile()); + } + } + + public boolean hasHead(String playerName) + { + for (HeadCacheItem item : items) { + if(item.name.equals(playerName)) return true; + } + return false; + } + + + public HeadCacheItem getHead(String playerName) + { + for (HeadCacheItem item : items) { + if(item.name.equals(playerName)) return item; + } + return null; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java b/src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java new file mode 100644 index 0000000..59e77c9 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/HeadUtilities.java @@ -0,0 +1,67 @@ +package com.zontreck.libzontreck.util.heads; + +import java.net.MalformedURLException; +import java.net.URL; +import java.util.UUID; + +import com.google.gson.Gson; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.util.HttpHelper; +import com.zontreck.libzontreck.util.heads.HeadCache.HeadCacheItem; +import net.minecraft.world.item.ItemStack; + +/** + * Added to showcase Patreon supporters and those who have helped test or provide feedback and suggestions! + */ +public class HeadUtilities { + protected static HeadCacheItem cachedLookup(String playerName) + { + if(HeadCache.CACHE.hasHead(playerName)) + { + HeadCacheItem item = HeadCache.CACHE.getHead(playerName); + return item; + }else { + // Look up head then add to cache + return externalHeadRequest(playerName); + } + } + + public static ItemStack get(String playerName, String itemName) + { + return cachedLookup(playerName).getAsItem(itemName); + } + + private static HeadCacheItem externalHeadRequest(String playerName) + { + String data=""; + try { + data = HttpHelper.getFrom(new URL(LibZontreck.PLAYER_INFO_URL + playerName)); + } catch (MalformedURLException e) { + e.printStackTrace(); + } + + if(data.equals("")){ + return null; + } + + UUID PlayerID = null; + String playerTexture=""; + try{ + Gson gson = new Gson(); + PlayerInfo info = gson.fromJson(data, PlayerInfo.class); + + String data2 = HttpHelper.getFrom(new URL(LibZontreck.PLAYER_SKIN_URL + info.id)); + + PlayerProfileInfo info2 = gson.fromJson(data2, PlayerProfileInfo.class); + playerTexture = info2.properties.get(0).value; + PlayerID = HeadCache.HeadCacheItem.toNewID(info.id); + + + return HeadCache.CACHE.addToCache(PlayerID, playerTexture, playerName); + }catch(Exception e) + { + return null; + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java new file mode 100644 index 0000000..5f92f33 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerInfo.java @@ -0,0 +1,6 @@ +package com.zontreck.libzontreck.util.heads; + +public class PlayerInfo { + public String name; + public String id; +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java new file mode 100644 index 0000000..f1c3a33 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerProfileInfo.java @@ -0,0 +1,9 @@ +package com.zontreck.libzontreck.util.heads; + +import java.util.List; + +public class PlayerProfileInfo { + public String id; + public String name; + public List properties; +} diff --git a/src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java new file mode 100644 index 0000000..aeaa7e6 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/util/heads/PlayerTextureContainer.java @@ -0,0 +1,6 @@ +package com.zontreck.libzontreck.util.heads; + +public class PlayerTextureContainer { + public String name; + public String value; +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/ChunkPos.java b/src/main/java/com/zontreck/libzontreck/vectors/ChunkPos.java new file mode 100644 index 0000000..ad4173d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/ChunkPos.java @@ -0,0 +1,42 @@ +package com.zontreck.libzontreck.vectors; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.server.level.ServerLevel; + +public class ChunkPos { + public Points points; + public Vector2f centerPoints; + public String dim; + + public ChunkPos(Vector3d point1, Vector3d point2, ServerLevel lvl) + { + points = new Points(point1, point2, lvl); + dim = WorldPosition.getDim(lvl); + } + + public ChunkPos(CompoundTag tag) + { + points = new Points(tag.getCompound("points")); + centerPoints = Vector2f.deserialize(tag.getCompound("center")); + } + + public boolean isWithin(Vector3d point) + { + return point.Inside(points.Min, points.Max); + } + + public static ChunkPos getChunkPos(WorldPosition pos) + { + return pos.getChunkPos(); + } + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.put("points", points.serialize()); + tag.put("center", centerPoints.serialize()); + tag.putString("dim", dim); + + return tag; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/NonAbsVector3.java b/src/main/java/com/zontreck/libzontreck/vectors/NonAbsVector3.java new file mode 100644 index 0000000..0bb7598 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/NonAbsVector3.java @@ -0,0 +1,63 @@ +package com.zontreck.libzontreck.vectors; + +import net.minecraft.nbt.CompoundTag; + +/* +* This is a non-serializable instanced Vector that is meant to slam positions down as a integer +*/ +public class NonAbsVector3 +{ + public long x; + public long y; + public long z; + + public NonAbsVector3(Vector3d origin) + { + x = Math.round(origin.x); + y = Math.round(origin.y); + z = Math.round(origin.z); + } + + + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putLong("x", x); + tag.putLong("y", y); + tag.putLong("z", z); + + return tag; + } + + public NonAbsVector3(CompoundTag tag) { + this.deserialize(tag); + } + public void deserialize(CompoundTag tag) + { + x=tag.getLong("x"); + y=tag.getLong("y"); + z=tag.getLong("z"); + } + + + public boolean same(NonAbsVector3 other) + { + if(x == other.x && y==other.y && z==other.z)return true; + else return false; + } + + public boolean inside(NonAbsVector3 point1, NonAbsVector3 point2) + { + if(point1.x <= x && point2.x >= x){ + if(point1.y <= y && point2.y >= y) + { + if(point1.z <= z && point2.z >= z) + { + return true; + } + } + } + + return false; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Points.java b/src/main/java/com/zontreck/libzontreck/vectors/Points.java new file mode 100644 index 0000000..1e979bd --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Points.java @@ -0,0 +1,55 @@ +package com.zontreck.libzontreck.vectors; + +import net.minecraft.nbt.CompoundTag; +import net.minecraft.server.level.ServerLevel; + +/** + * Two points within the same dimension + */ +public class Points { + public Vector3d Min = Vector3d.ZERO; + public Vector3d Max = Vector3d.ZERO; + public String dimension = ""; + + /** + * Creates a new set of points + * @param min + * @param max + * @param lvl + */ + public Points(Vector3d min, Vector3d max, ServerLevel lvl) + { + dimension = WorldPosition.getDimSafe(lvl); + if(min.less(max)) + { + Min=min; + Max=max; + }else{ + Min=max; + Max=min; + } + } + + /** + * Deserializes a points compound tag + * @param tag + */ + public Points(CompoundTag tag){ + deserialize(tag); + } + + public CompoundTag serialize(){ + CompoundTag tag = new CompoundTag(); + tag.put("min", Min.serialize()); + tag.put("max", Max.serialize()); + tag.putString("dim", dimension); + return tag; + } + + public void deserialize(CompoundTag tag) + { + Min = Vector3d.deserialize(tag.getCompound("min")); + Max = Vector3d.deserialize(tag.getCompound("max")); + dimension = tag.getString("dim"); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector2f.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector2f.java new file mode 100644 index 0000000..d668d2c --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector2f.java @@ -0,0 +1,200 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector2; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec2; +import org.jetbrains.annotations.NotNull; + +public class Vector2f implements Vector2 +{ + public static final Vector2f ZERO = new Vector2f(0, 0); + + public float x; + public float y; + + @Override + public Vec2 asMinecraftVector(){ + return new Vec2(x, y); + } + + public Vector2f() + { + + } + + public Vector2f(float x, float y) + { + this.x=x; + this.y=y; + } + + public Vector2f(Vec2 pos) + { + x=pos.x; + y=pos.y; + } + + public static Vector2f parseString(String vector2) + { + Vector2f vec = new Vector2f(); + // This will be serialized most likely from the ToString method + // Parse + if(vector2.startsWith("<")) + { + vector2=vector2.substring(1, vector2.length()-1); // Rip off the ending bracket too + String[] positions = vector2.split(", "); + if(positions.length!=2) + { + positions = vector2.split(","); + } + + if(positions.length!=2) + { + return ZERO; + } + + vec.x = Float.parseFloat(positions[0]); + vec.y = Float.parseFloat(positions[1]); + // We are done now + } + + return vec; + } + + @Override + public Vector2f Clone() + { + Vector2f n = new Vector2f(x, y); + return n; + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y) + ">"; + } + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putFloat("x", x); + tag.putFloat("y", y); + + return tag; + } + + public static Vector2f deserialize(CompoundTag tag) + { + Vector2f vec = new Vector2f(); + vec.x=tag.getFloat("x"); + vec.y=tag.getFloat("y"); + + return vec; + } + + @Override + public boolean Same(Vector2 other) + { + Vector2f ov = other.asVector2f(); + if(x == ov.x && y == ov.y) return true; + return false; + } + + @Override + public boolean Inside(Vector2 point1, Vector2 point2) + { + Vector2f p1 = point1.asVector2f(); + Vector2f p2 = point2.asVector2f(); + + if(p1.x <= x && p2.x >= x){ + if(p1.y <= y && p2.y >= y) + { + return true; + } + } + + return false; + } + + @Override + public Vector2f asVector2f() + { + return this; + } + + @Override + public Vector2i asVector2i() { + return new Vector2i(Math.round(x), Math.round(y)); + } + + @Override + public boolean greater(Vector2 other) + { + Vector2f vec = other.asVector2f(); + return ((x > vec.x) && (y > vec.y)); + } + + @Override + public boolean less(Vector2 other) + { + Vector2f vec = other.asVector2f(); + return ((x > vec.x) && (y > vec.y)); + } + public boolean equal(Vector2 other) + { + return Same(other); + } + + @Override + public Vector2f add(Vector2 other) { + Vector2f vec = other.asVector2f(); + return new Vector2f(x + vec.x, y + vec.y); + } + + @Override + public Vector2f subtract(Vector2 other) { + Vector2f vec = other.asVector2f(); + return new Vector2f(x - vec.x, y - vec.y); + } + + @Override + public double distance(Vector2 other) { + Vector2f vec = subtract(other); + return Math.sqrt((vec.x * vec.x + vec.y * vec.y)); + } + + @Override + public Vector2f moveUp() { + return add(new Vector2f(0,1)); + } + + @Override + public Vector2f moveDown() { + return subtract(new Vector2f(0,1)); + } + + @Override + public Float getX() { + return x; + } + + @Override + public Float getY() { + return y; + } + + @Override + public int compareTo(@NotNull Vector2 other) { + if(other instanceof Vector2f v2f){ + + // Compare x coordinates first + int cmp = Float.compare(this.x, v2f.x); + if (cmp != 0) { + return cmp; + } + // If x coordinates are equal, compare y coordinates + return Float.compare(this.y, v2f.y); + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector2i.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector2i.java new file mode 100644 index 0000000..1bed20f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector2i.java @@ -0,0 +1,213 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector2; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec2; +import org.jetbrains.annotations.NotNull; + +public class Vector2i implements Vector2 +{ + public static final Vector2i ZERO = new Vector2i(0, 0); + + public int x; + public int y; + + @Override + public Vec2 asMinecraftVector(){ + return new Vec2(x, y); + } + + public Vector2i() + { + + } + + public Vector2i(int x, int y) + { + this.x=x; + this.y=y; + } + + public Vector2i(Vec2 pos) + { + x= (int) Math.floor(pos.x); + y=(int)Math.floor(pos.y); + } + + public static Vector2i parseString(String vector2) + { + Vector2i vec = new Vector2i(); + // This will be serialized most likely from the ToString method + // Parse + if(vector2.startsWith("<")) + { + vector2=vector2.substring(1, vector2.length()-1); // Rip off the ending bracket too + String[] positions = vector2.split(", "); + if(positions.length!=2) + { + positions = vector2.split(","); + } + + if(positions.length!=2) + { + return ZERO; + } + + vec.x = Integer.parseInt(positions[0]); + vec.y = Integer.parseInt(positions[1]); + // We are done now + } + + return vec; + } + + @Override + public Vector2i Clone() + { + Vector2i n = new Vector2i(x, y); + return n; + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y) + ">"; + } + + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putFloat("x", x); + tag.putFloat("y", y); + + return tag; + } + + public static Vector2i deserialize(CompoundTag tag) + { + Vector2i vec = new Vector2i(); + + vec.x=tag.getInt("x"); + vec.y=tag.getInt("y"); + + return vec; + } + + @Override + public boolean Same(Vector2 other) + { + Vector2i v2i = other.asVector2i(); + + if(x == v2i.x && y==v2i.y)return true; + else return false; + } + + @Override + public boolean Inside(Vector2 point1, Vector2 point2) + { + Vector2i v1i = point1.asVector2i(); + Vector2i v2i = point2.asVector2i(); + + if(v1i.x <= x && v2i.x >= x){ + if(v1i.y <= y && v2i.y >= y) + { + return true; + } + } + + return false; + } + + @Override + public Vector2f asVector2f() { + return new Vector2f(x,y); + } + + @Override + public Vector2i asVector2i() { + return this; + } + + @Override + public boolean greater(Vector2 other) + { + Vector2i vec = other.asVector2i(); + return ((x > vec.x) && (y > vec.y)); + } + + @Override + public boolean less(Vector2 other) + { + Vector2i vec = other.asVector2i(); + return ((x > vec.x) && (y > vec.y)); + } + + @Override + public boolean equal(Vector2 other) + { + return Same(other); + } + + @Override + public Vector2i add(Vector2 other) { + Vector2i vec = other.asVector2i(); + x += vec.x; + y += vec.y; + + return this; + } + + @Override + public Vector2i subtract(Vector2 other) { + Vector2i vec = other.asVector2i(); + + x -= vec.x; + y -= vec.y; + + return this; + } + + @Override + public double distance(Vector2 other) { + Vector2i vec = subtract(other); + return Math.sqrt((vec.x * vec.x + vec.y * vec.y)); + } + + + @Override + public Vector2i moveUp() { + return add(new Vector2i(0,1)); + } + + @Override + public Vector2i moveDown() { + return subtract(new Vector2i(0,1)); + } + + + @Override + public Integer getX() { + return x; + } + + @Override + public Integer getY() { + return y; + } + + @Override + public int compareTo(@NotNull Vector2 other) { + if(other instanceof Vector2i v2i){ + + // Compare x coordinates first + int cmp = Integer.compare(this.x, v2i.x); + if (cmp != 0) { + return cmp; + } + // If x coordinates are equal, compare y coordinates + return Integer.compare(this.y, v2i.y); + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector3d.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector3d.java new file mode 100644 index 0000000..a7bc82f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector3d.java @@ -0,0 +1,249 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector3; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Vec3i; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec3; +import org.jetbrains.annotations.NotNull; + +public class Vector3d implements Vector3 +{ + public static final Vector3d ZERO = new Vector3d(0, 0, 0); + + + public double x; + public double y; + public double z; + + @Override + public Vec3 asMinecraftVector(){ + return new Vec3(x, y, z); + } + + @Override + public Vec3i asVec3i() + { + return new Vec3i((int) Math.round(x), (int) Math.round(y), (int) Math.round(z)); + } + + @Override + public BlockPos asBlockPos() + { + return new BlockPos(asVec3i()); + } + + public Vector3d() + { + + } + + public Vector3d(double x, double y, double z) + { + this.x=x; + this.y=y; + this.z=z; + } + + public Vector3d(Vec3 pos) + { + x=pos.x; + y=pos.y; + z=pos.z; + } + + public Vector3d(BlockPos pos) + { + x=pos.getX(); + y=pos.getY(); + z=pos.getZ(); + } + + public static Vector3d parseString(String vector3) + { + Vector3d vec = new Vector3d(); + // This will be serialized most likely from the ToString method + // Parse + if(vector3.startsWith("<")) + { + vector3=vector3.substring(1, vector3.length()-1); // Rip off the ending bracket too + String[] positions = vector3.split(", "); + if(positions.length!=3) + { + positions = vector3.split(","); + } + + if(positions.length!=3) + { + return ZERO; + } + + vec.x = Double.parseDouble(positions[0]); + vec.y = Double.parseDouble(positions[1]); + vec.z = Double.parseDouble(positions[2]); + // We are done now + } + + return vec; + } + + @Override + public Vector3d subtract(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return new Vector3d(x-vec.x, y-vec.y, z-vec.z); + } + + @Override + public Vector3d add(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return new Vector3d(x+vec.x, y+vec.y, z +vec.z); + } + + @Override + public double distance(Vector3 other) + { + Vector3d sub = subtract(other); + return Math.sqrt((sub.x * sub.x + sub.y * sub.y + sub.z * sub.z)); + } + + @Override + public Vector3d moveUp() + { + return add(new Vector3d(0,1,0)); + } + public Vector3d moveDown() + { + return subtract(new Vector3d(0,1,0)); + } + + + @Override + public Vector3d Clone() + { + return new Vector3d(x, y, z); + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y)+", "+String.valueOf(z)+">"; + } + + public NonAbsVector3 rounded() + { + NonAbsVector3 cl = new NonAbsVector3(this); + return cl; + } + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putDouble("x", x); + tag.putDouble("y", y); + tag.putDouble("z", z); + + return tag; + } + + public static Vector3d deserialize(CompoundTag tag) + { + Vector3d vec = new Vector3d(); + + vec.x=tag.getDouble("x"); + vec.y=tag.getDouble("y"); + vec.z=tag.getDouble("z"); + + return vec; + } + + @Override + public boolean Same(Vector3 other) + { + Vector3d vec = other.asVector3d(); + if(x == vec.x && y==vec.y && z==vec.z)return true; + else return false; + } + + + @Override + public boolean Inside(Vector3 point1, Vector3 point2) + { + Vector3d v1 = point1.asVector3d(); + Vector3d v2 = point2.asVector3d(); + + if(v1.x <= x && v2.x >= x){ + if(v1.y <= y && v2.y >= y) + { + if(v1.z <= z && v2.z >= z) + { + return true; + } + } + } + + return false; + } + + @Override + public Vector3d asVector3d() { + return this; + } + + @Override + public Vector3i asVector3i() { + return new Vector3i((int) Math.round(x), (int) Math.round(y), (int) Math.round(z)); + } + + @Override + public boolean greater(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return ((x>vec.x) && (y>vec.y) && (z>vec.z)); + } + + @Override + public boolean less(Vector3 other) + { + Vector3d vec = other.asVector3d(); + return ((x doubleVector3) { + if(doubleVector3 instanceof Vector3d v3d) + { + int Ycomp = Double.compare(y, v3d.y); + if(Ycomp!=0)return Ycomp; + int Zcomp = Double.compare(z, v3d.z); + if(Zcomp!=0)return Zcomp; + int Xcomp = Double.compare(x, v3d.x); + if(Xcomp!=0)return Xcomp; + + return 0; + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/Vector3i.java b/src/main/java/com/zontreck/libzontreck/vectors/Vector3i.java new file mode 100644 index 0000000..f91044f --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/Vector3i.java @@ -0,0 +1,243 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.api.Vector3; +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Vec3i; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.world.phys.Vec3; +import org.jetbrains.annotations.NotNull; + +public class Vector3i implements Vector3 +{ + public static final Vector3i ZERO = new Vector3i(0, 0, 0); + + + public int x; + public int y; + public int z; + + @Override + public Vec3 asMinecraftVector(){ + return new Vec3(x, y, z); + } + + @Override + public Vec3i asVec3i() + { + return new Vec3i((int) Math.round(x), (int) Math.round(y), (int) Math.round(z)); + } + + @Override + public BlockPos asBlockPos() + { + return new BlockPos(asVec3i()); + } + + public Vector3i() + { + + } + + public Vector3i(int x, int y, int z) + { + this.x=x; + this.y=y; + this.z=z; + } + + public Vector3i(Vec3i pos) + { + x=pos.getX(); + y=pos.getY(); + z=pos.getZ(); + } + + public Vector3i(BlockPos pos) + { + x=pos.getX(); + y=pos.getY(); + z=pos.getZ(); + } + + public static Vector3i parseString(String vector3) throws InvalidDeserialization + { + Vector3i vec = new Vector3i(); + // This will be serialized most likely from the ToString method + // Parse + if(vector3.startsWith("<")) + { + vector3=vector3.substring(1, vector3.length()-1); // Rip off the ending bracket too + String[] positions = vector3.split(", "); + if(positions.length!=3) + { + positions = vector3.split(","); + } + + if(positions.length!=3) + { + throw new InvalidDeserialization("Positions must be in the same format provided by ToString() (ex. <1,1,1> or <1, 1, 1>"); + } + + vec.x = Integer.parseInt(positions[0]); + vec.y = Integer.parseInt(positions[1]); + vec.z = Integer.parseInt(positions[2]); + // We are done now + } + + return vec; + } + + @Override + public Vector3i subtract(Vector3 other) + { + Vector3i vec = other.asVector3i(); + return new Vector3i(x-vec.x, y-vec.y, z-vec.z); + } + + @Override + public Vector3i add(Vector3 other) + { + Vector3i vec = other.asVector3i(); + return new Vector3i(x+vec.x, y+vec.y, z +vec.z); + } + + @Override + public Vector3i asVector3i() { + return this; + } + + @Override + public Vector3d asVector3d() { + return new Vector3d(x, y, z); + } + + @Override + public double distance(Vector3 other) + { + Vector3i sub = subtract(other); + return Math.sqrt((sub.x * sub.x + sub.y * sub.y + sub.z * sub.z)); + } + + @Override + public Vector3i moveUp() + { + return add(new Vector3i(0,1,0)); + } + public Vector3i moveDown() + { + return subtract(new Vector3i(0,1,0)); + } + + @Override + public Vector3i Clone() + { + Vector3i n = new Vector3i(x, y, z); + return n; + } + + @Override + public String toString() + { + return "<"+String.valueOf(x)+", "+String.valueOf(y)+", "+String.valueOf(z)+">"; + } + + @Override + public CompoundTag serialize() + { + CompoundTag tag = new CompoundTag(); + tag.putInt("x", x); + tag.putInt("y", y); + tag.putInt("z", z); + + return tag; + } + + public static Vector3i deserialize(CompoundTag tag) + { + Vector3i vec = new Vector3i(); + + vec.x=tag.getInt("x"); + vec.y=tag.getInt("y"); + vec.z=tag.getInt("z"); + + return vec; + } + + @Override + public boolean Same(Vector3 other) + { + Vector3i vec = other.asVector3i(); + if(x == vec.x && y==vec.y && z==vec.z)return true; + else return false; + } + + @Override + public boolean Inside(Vector3 point1, Vector3 point2) + { + Vector3i v1 = point1.asVector3i(); + Vector3i v2 = point2.asVector3i(); + + if(v1.x <= x && v2.x >= x){ + if(v1.y <= y && v2.y >= y) + { + if(v1.z <= z && v2.z >= z) + { + return true; + } + } + } + + return false; + } + + @Override + public boolean greater(Vector3 other) + { + Vector3i v3 = other.asVector3i(); + return ((x>v3.x) && (y>v3.y) && (z>v3.z)); + } + + @Override + public boolean less(Vector3 other) + { + Vector3i vec = other.asVector3i(); + return ((x integerVector3) { + if(integerVector3 instanceof Vector3i v3i) + { + int Ycomp = Integer.compare(y, v3i.y); + if(Ycomp!=0)return Ycomp; + int Zcomp = Integer.compare(z, v3i.z); + if(Zcomp!=0)return Zcomp; + int Xcomp = Integer.compare(x, v3i.x); + if(Xcomp!=0)return Xcomp; + + return 0; + } else return -1; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java b/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java new file mode 100644 index 0000000..eda5fbb --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/vectors/WorldPosition.java @@ -0,0 +1,141 @@ +package com.zontreck.libzontreck.vectors; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraftforge.server.ServerLifecycleHooks; + +public class WorldPosition implements Cloneable +{ + + public Vector3d Position; + public String Dimension; + public String DimSafe; + + public WorldPosition(CompoundTag tag, boolean pretty) throws InvalidDeserialization { + if (pretty) { + + Position = Vector3d.parseString(tag.getString("Position")); + Dimension = tag.getString("Dimension"); + } else { + Position = Vector3d.deserialize(tag.getCompound("pos")); + Dimension = tag.getString("Dimension"); + } + + calcDimSafe(); + + } + + public WorldPosition(Vector3d pos, String dim) { + Position = pos; + Dimension = dim; + calcDimSafe(); + } + + public WorldPosition(ServerPlayer player) { + this(new Vector3d(player.position()), player.getLevel()); + } + + public WorldPosition(Vector3d pos, ServerLevel lvl) { + Position = pos; + Dimension = lvl.dimension().location().getNamespace() + ":" + lvl.dimension().location().getPath(); + calcDimSafe(); + } + + public void calcDimSafe() { + ServerLevel lvl = getActualDimension(); + DimSafe = lvl.dimension().location().getNamespace() + "-" + lvl.dimension().location().getPath(); + } + + public static String getDimSafe(ServerLevel lvl) { + return lvl.dimension().location().getNamespace() + "-" + lvl.dimension().location().getPath(); + } + + /** + * Gives you the dimension string modid:dimension + * + * @param lvl + * @return dimension string + */ + public static String getDim(ServerLevel lvl) { + return lvl.dimension().location().getNamespace() + ":" + lvl.dimension().location().getPath(); + } + + + @Override + public String toString() { + return NbtUtils.structureToSnbt(serialize()); + } + + public CompoundTag serializePretty() { + CompoundTag tag = new CompoundTag(); + + tag.putString("Position", Position.toString()); + tag.putString("Dimension", Dimension); + + return tag; + } + + public CompoundTag serialize() { + CompoundTag tag = new CompoundTag(); + tag.put("pos", Position.serialize()); + tag.putString("Dimension", Dimension); + + return tag; + } + + + public ServerLevel getActualDimension() { + + String dim = Dimension; + String[] dims = dim.split(":"); + + ResourceLocation rl = new ResourceLocation(dims[0], dims[1]); + ServerLevel dimL = null; + for (ServerLevel lServerLevel : ServerLifecycleHooks.getCurrentServer().getAllLevels()) { + ResourceLocation XL = lServerLevel.dimension().location(); + + if (XL.getNamespace().equals(rl.getNamespace())) { + if (XL.getPath().equals(rl.getPath())) { + dimL = lServerLevel; + } + } + } + + if (dimL == null) { + LibZontreck.LOGGER.error("DIMENSION COULD NOT BE FOUND : " + Dimension); + return null; + } + + return dimL; + } + + + public boolean same(WorldPosition other) { + return Position.Same(other.Position) && Dimension == other.Dimension; + } + + public ChunkPos getChunkPos() { + net.minecraft.world.level.ChunkPos mcChunk = getActualDimension().getChunkAt(Position.asBlockPos()).getPos(); + ChunkPos pos = new ChunkPos(new Vector3d(mcChunk.getMinBlockX(), -70, mcChunk.getMinBlockZ()), new Vector3d(mcChunk.getMaxBlockX(), 400, mcChunk.getMaxBlockZ()), getActualDimension()); + pos.centerPoints = new Vector2f(mcChunk.getMiddleBlockX(), mcChunk.getMiddleBlockZ()); + + return pos; + } + + @Override + public WorldPosition clone() { + try { + WorldPosition clone = (WorldPosition) super.clone(); + if(Position != null) + clone.Position = Position.Clone(); + return clone; + } catch (CloneNotSupportedException e) { + throw new AssertionError(); + } + } +} diff --git a/src/main/java/com/zontreck/mixin/ColorsMixin.java b/src/main/java/com/zontreck/mixin/ColorsMixin.java new file mode 100644 index 0000000..c2f5898 --- /dev/null +++ b/src/main/java/com/zontreck/mixin/ColorsMixin.java @@ -0,0 +1,8 @@ +package com.zontreck.mixin; + +import net.minecraft.world.item.DyeColor; +import org.spongepowered.asm.mixin.Mixin; + +@Mixin(DyeColor.class) +public class ColorsMixin { +} diff --git a/src/main/java/com/zontreck/mixin/MaterialColorMixin.java b/src/main/java/com/zontreck/mixin/MaterialColorMixin.java new file mode 100644 index 0000000..52fd812 --- /dev/null +++ b/src/main/java/com/zontreck/mixin/MaterialColorMixin.java @@ -0,0 +1,8 @@ +package com.zontreck.mixin; + +import net.minecraft.world.level.material.MaterialColor; +import org.spongepowered.asm.mixin.Mixin; + +@Mixin(MaterialColor.class) +public class MaterialColorMixin { +} diff --git a/src/main/java/dev/zontreck/essentials/util/EssentialsDatastore.java b/src/main/java/com/zontreck/util/EssentialsDatastore.java similarity index 87% rename from src/main/java/dev/zontreck/essentials/util/EssentialsDatastore.java rename to src/main/java/com/zontreck/util/EssentialsDatastore.java index 3decbdc..5b1e77e 100644 --- a/src/main/java/dev/zontreck/essentials/util/EssentialsDatastore.java +++ b/src/main/java/com/zontreck/util/EssentialsDatastore.java @@ -1,13 +1,13 @@ -package dev.zontreck.essentials.util; +package com.zontreck.util; + +import com.zontreck.libzontreck.util.FileTreeDatastore; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; -import dev.zontreck.libzontreck.util.FileTreeDatastore; +public class EssentialsDatastore { -public class EssentialsDatastore extends FileTreeDatastore -{ public static final Path AEBASE; static{ diff --git a/src/main/java/com/zontreck/util/ExperienceUtils.java b/src/main/java/com/zontreck/util/ExperienceUtils.java new file mode 100644 index 0000000..67329af --- /dev/null +++ b/src/main/java/com/zontreck/util/ExperienceUtils.java @@ -0,0 +1,16 @@ +package com.zontreck.util; + + + +public class ExperienceUtils +{ + + public static int getXpNeededForNextLevel(int xpLvl) { + if (xpLvl >= 30) { + return 112 + (xpLvl - 30) * 9; + } else { + return xpLvl >= 15 ? 37 + (xpLvl - 15) * 5 : 7 + xpLvl * 2; + } + } +} + diff --git a/src/main/java/com/zontreck/util/ModDimensions.java b/src/main/java/com/zontreck/util/ModDimensions.java new file mode 100644 index 0000000..81c3999 --- /dev/null +++ b/src/main/java/com/zontreck/util/ModDimensions.java @@ -0,0 +1,16 @@ +package com.zontreck.util; + + +import com.zontreck.AriasEssentials; +import net.minecraft.resources.ResourceLocation; + +public class ModDimensions +{ + public static final ResourceLocation BUILDER = new ResourceLocation(AriasEssentials.MOD_ID, "builder"); + //public static final ResourceLocation THRESHOLD = new ResourceLocation(AriasEssentials.MOD_ID, "threshold"); + public static String BUILDER_DIM() + { + return BUILDER.getNamespace() + ":" + BUILDER.getPath(); + } +} + diff --git a/src/main/java/com/zontreck/util/PerPlayerDataRegistry.java b/src/main/java/com/zontreck/util/PerPlayerDataRegistry.java new file mode 100644 index 0000000..8060f5c --- /dev/null +++ b/src/main/java/com/zontreck/util/PerPlayerDataRegistry.java @@ -0,0 +1,53 @@ +package com.zontreck.util; + + +import com.zontreck.libzontreck.events.ProfileUnloadedEvent; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.Tag; +import net.minecraftforge.eventbus.api.SubscribeEvent; + +import java.util.HashMap; +import java.util.Map; +import java.util.UUID; + +public class PerPlayerDataRegistry { + // The idea here is to make a registry unique to a player for mod data + // This will allow separating handling of functions, like cooldowns + private static Map cache = new HashMap<>(); + + public static void put(UUID ID, String nick, Tag tag) + { + if(cache.containsKey(ID)) + { + CompoundTag xTag = cache.get(ID); + xTag.put(nick, tag); + }else { + CompoundTag xTag = new CompoundTag(); + xTag.put(nick,tag); + + cache.put(ID, xTag); + } + } + + public static Tag get(UUID ID, String nick) + { + if(cache.containsKey(ID)) + { + CompoundTag tag = cache.get(ID); + if(tag.contains(nick)) return tag.get(nick); + } + + return null; + } + + + @SubscribeEvent + public static void onProfileUnload(ProfileUnloadedEvent ev) + { + if(cache.containsKey(UUID.fromString(ev.user_id))) + { + cache.remove(UUID.fromString(ev.user_id)); + } + } +} + diff --git a/src/main/java/dev/zontreck/essentials/util/SoundUtilities.java b/src/main/java/com/zontreck/util/SoundUtilities.java similarity index 95% rename from src/main/java/dev/zontreck/essentials/util/SoundUtilities.java rename to src/main/java/com/zontreck/util/SoundUtilities.java index dc59728..a8d3673 100644 --- a/src/main/java/dev/zontreck/essentials/util/SoundUtilities.java +++ b/src/main/java/com/zontreck/util/SoundUtilities.java @@ -1,15 +1,12 @@ -package dev.zontreck.essentials.util; - +package com.zontreck.util; import net.minecraft.core.BlockPos; import net.minecraft.sounds.SoundEvents; import net.minecraft.sounds.SoundSource; import net.minecraft.world.level.Level; -/** - * {@link SoundUtilities#playNoteBlockHarpSound(Level, BlockPos, String)} was taken/derrived from Time-in-a-bottle github. - */ public class SoundUtilities { + public static void playNoteBlockHarpSound(Level level, BlockPos pos, String note) { // https://minecraft.gamepedia.com/Note_Block switch (note) { diff --git a/src/main/java/dev/zontreck/essentials/util/StylesUtil.java b/src/main/java/com/zontreck/util/StylesUtil.java similarity index 87% rename from src/main/java/dev/zontreck/essentials/util/StylesUtil.java rename to src/main/java/com/zontreck/util/StylesUtil.java index df7c51b..b4e1880 100644 --- a/src/main/java/dev/zontreck/essentials/util/StylesUtil.java +++ b/src/main/java/com/zontreck/util/StylesUtil.java @@ -1,4 +1,5 @@ -package dev.zontreck.essentials.util; +package com.zontreck.util; + import net.minecraft.ChatFormatting; import net.minecraft.network.chat.Style; @@ -8,3 +9,4 @@ public class StylesUtil { public static final Style GREEN = Style.EMPTY.applyFormat(ChatFormatting.GREEN); public static final Style GRAY = Style.EMPTY.applyFormat(ChatFormatting.GRAY); } + diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportActioner.java b/src/main/java/com/zontreck/util/TeleportActioner.java similarity index 82% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportActioner.java rename to src/main/java/com/zontreck/util/TeleportActioner.java index 612bb36..25ab56a 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportActioner.java +++ b/src/main/java/com/zontreck/util/TeleportActioner.java @@ -1,61 +1,59 @@ -package dev.zontreck.essentials.commands.teleport; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.commands.EffectCommands; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.effect.MobEffect; -import net.minecraft.world.effect.MobEffectInstance; -import net.minecraft.world.effect.MobEffects; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -public class TeleportActioner -{ - public static void PerformTeleport(TeleportContainer contain, boolean eventless){ - //sub_runnable run = new sub_runnable(contain); - Thread tx = new Thread(new TeleportRunnable(contain, eventless)); - tx.start(); - } - - public static boolean isBlacklistedDimension(ServerLevel level) - { - WorldPosition pos = new WorldPosition(Vector3d.ZERO, level); - return AEServerConfig.getInstance().teleport.Blacklist.contains(pos.Dimension); - } - - public static void ApplyTeleportEffect(ServerPlayer player){ - if(isBlacklistedDimension(player.getLevel())){ - return; - } - // 10/05/2022 - Thinking ahead here to future proof it so i can do things in threads safely - // By adding this task onto the main server thread, any thread can call the TeleportActioner and it will be actioned on the main thread without needing to repeat the process of sending this to the server thread. - player.server.execute(new Runnable(){ - public void run(){ - - // 12/18/2023 - Updated to store effects in the config, and make duration and amplifier random! - var effects = AEServerConfig.getInstance().teleport.Effects; - for(int i = 0; i < effects.size(); i++) { - RegistryObject effect = RegistryObject.create(new ResourceLocation(effects.get(i)), ForgeRegistries.MOB_EFFECTS); - - int duration = AriasEssentials.random.nextInt(5, 10) * 20; - int amplifier = AriasEssentials.random.nextInt(1, 3); - - if (effects.get(i).equals("minecraft:slow_falling")) - { - duration = duration*2; - } - - MobEffectInstance inst = new MobEffectInstance(effect.get(), duration, amplifier, true, true); - - player.addEffect(inst); - } - - } - }); - } -} +package com.zontreck.util; + +import com.zontreck.AriasEssentials; +import com.zontreck.configs.server.AEServerConfig; +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.resources.ResourceLocation; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.effect.MobEffect; +import net.minecraft.world.effect.MobEffectInstance; +import net.minecraftforge.registries.ForgeRegistries; +import net.minecraftforge.registries.RegistryObject; + +public class TeleportActioner { + public static void PerformTeleport(TeleportContainer contain, boolean eventless){ + //sub_runnable run = new sub_runnable(contain); + Thread tx = new Thread(new TeleportRunnable(contain, eventless)); + tx.start(); + } + + public static boolean isBlacklistedDimension(ServerLevel level) + { + WorldPosition pos = new WorldPosition(Vector3d.ZERO, level); + return AEServerConfig.getInstance().teleport.Blacklist.contains(pos.Dimension); + } + + public static void ApplyTeleportEffect(ServerPlayer player){ + if(isBlacklistedDimension(player.getLevel())){ + return; + } + // 10/05/2022 - Thinking ahead here to future proof it so i can do things in threads safely + // By adding this task onto the main server thread, any thread can call the TeleportActioner and it will be actioned on the main thread without needing to repeat the process of sending this to the server thread. + + player.server.execute(new Runnable(){ + public void run(){ + + // 12/18/2023 - Updated to store effects in the config, and make duration and amplifier random! + var effects = AEServerConfig.getInstance().teleport.Effects; + for(int i = 0; i < effects.size(); i++) { + RegistryObject effect = RegistryObject.create(new ResourceLocation(effects.get(i)), ForgeRegistries.MOB_EFFECTS); + + int duration = AriasEssentials.random.nextInt(5, 10) * 20; + int amplifier = AriasEssentials.random.nextInt(1, 3); + + if (effects.get(i).equals("minecraft:slow_falling")) + { + duration = duration*2; + } + + MobEffectInstance inst = new MobEffectInstance(effect.get(), duration, amplifier, true, true); + + player.addEffect(inst); + } + + } + }); + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportContainer.java b/src/main/java/com/zontreck/util/TeleportContainer.java similarity index 89% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportContainer.java rename to src/main/java/com/zontreck/util/TeleportContainer.java index d459ddc..265044a 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportContainer.java +++ b/src/main/java/com/zontreck/util/TeleportContainer.java @@ -1,67 +1,67 @@ -package dev.zontreck.essentials.commands.teleport; - -import java.time.Instant; -import java.util.UUID; - -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; - -public class TeleportContainer implements Comparable{ - public UUID FromPlayer; - public UUID ToPlayer; - public long StartedAt; - public UUID TeleportID; - public WorldPosition world_pos; - - /* - * The following variables are only used when actioning the teleport itself, and should only be initialized once the teleport is about to engage - */ - public ServerPlayer PlayerInst; - public Vec3 Position; - public Vec2 Rotation; - public ServerLevel Dimension; - public WorldPosition OldPosition; // Populated in a teleport event - - - public boolean has_expired(){ - return Instant.now().getEpochSecond() > (StartedAt + (60)); - } - - public TeleportContainer (UUID From, UUID To) - { - FromPlayer = From; - ToPlayer=To; - TeleportID = UUID.randomUUID(); - - StartedAt = Instant.now().getEpochSecond(); - } - - public TeleportContainer(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { - SetTeleportDestination(f_p, f_pos, f_rot, f_dim); - world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); - } - - private void SetTeleportDestination(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { - PlayerInst = f_p; - Position = f_pos; - Rotation = f_rot; - Dimension = f_dim; - world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); - } - - @Override - public int compareTo(Object o) { - if(o instanceof TeleportContainer cont){ - if(cont.FromPlayer != FromPlayer){ - return -1; - }else { - if(cont.ToPlayer != ToPlayer)return 1; - else return 0; - } - }else return -1; - } -} +package com.zontreck.util; + +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.phys.Vec2; +import net.minecraft.world.phys.Vec3; + +import java.time.Instant; +import java.util.UUID; + +public class TeleportContainer implements Comparable{ + public UUID FromPlayer; + public UUID ToPlayer; + public long StartedAt; + public UUID TeleportID; + public WorldPosition world_pos; + + /* + * The following variables are only used when actioning the teleport itself, and should only be initialized once the teleport is about to engage + */ + public ServerPlayer PlayerInst; + public Vec3 Position; + public Vec2 Rotation; + public ServerLevel Dimension; + public WorldPosition OldPosition; // Populated in a teleport event + + + public boolean has_expired(){ + return Instant.now().getEpochSecond() > (StartedAt + (60)); + } + + public TeleportContainer (UUID From, UUID To) + { + FromPlayer = From; + ToPlayer=To; + TeleportID = UUID.randomUUID(); + + StartedAt = Instant.now().getEpochSecond(); + } + + public TeleportContainer(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { + SetTeleportDestination(f_p, f_pos, f_rot, f_dim); + world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); + } + + private void SetTeleportDestination(ServerPlayer f_p, Vec3 f_pos, Vec2 f_rot, ServerLevel f_dim) { + PlayerInst = f_p; + Position = f_pos; + Rotation = f_rot; + Dimension = f_dim; + world_pos = new WorldPosition(new Vector3d(f_pos), f_dim); + } + + @Override + public int compareTo(Object o) { + if(o instanceof TeleportContainer cont){ + if(cont.FromPlayer != FromPlayer){ + return -1; + }else { + if(cont.ToPlayer != ToPlayer)return 1; + else return 0; + } + }else return -1; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportDestination.java b/src/main/java/com/zontreck/util/TeleportDestination.java similarity index 68% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportDestination.java rename to src/main/java/com/zontreck/util/TeleportDestination.java index 04c9fb1..180f252 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportDestination.java +++ b/src/main/java/com/zontreck/util/TeleportDestination.java @@ -1,53 +1,50 @@ -package dev.zontreck.essentials.commands.teleport; - -import dev.zontreck.libzontreck.api.Vector2; -import dev.zontreck.libzontreck.vectors.Vector2f; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import dev.zontreck.libzontreck.exceptions.InvalidDeserialization; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.server.level.ServerLevel; - -/** - * This defines the data structure, and methods for deserializing and serializing teleport destinations, for easier storage in the database - **/ -public class TeleportDestination extends WorldPosition -{ - public Vector2f Rotation; - - public TeleportDestination(CompoundTag tag) throws InvalidDeserialization - { - super(tag, true); - Rotation = Vector2f.parseString(tag.getString("Rotation")); - } - public TeleportDestination(Vector3d pos, Vector2f rot, String dim) - { - super(pos, dim); - Rotation = rot; - } - - public TeleportDestination(Vector3d pos, Vector2f rot, ServerLevel dim) - { - super(pos,dim); - Rotation=rot; - } - - @Override - public String toString() - { - - return NbtUtils.structureToSnbt(serialize()); - - } - - public CompoundTag serialize(){ - - CompoundTag tag = super.serializePretty(); - tag.putString("Rotation", Rotation.toString()); - - return tag; - } - -} +package com.zontreck.util; + +import com.zontreck.libzontreck.exceptions.InvalidDeserialization; +import com.zontreck.libzontreck.vectors.Vector2f; +import com.zontreck.libzontreck.vectors.Vector3d; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraft.nbt.CompoundTag; +import net.minecraft.nbt.NbtUtils; +import net.minecraft.server.level.ServerLevel; + +/** + * This defines the data structure, and methods for deserializing and serializing teleport destinations, for easier storage in the database + **/ +public class TeleportDestination extends WorldPosition { + + public Vector2f Rotation; + + public TeleportDestination(CompoundTag tag) throws InvalidDeserialization + { + super(tag, true); + Rotation = Vector2f.parseString(tag.getString("Rotation")); + } + public TeleportDestination(Vector3d pos, Vector2f rot, String dim) + { + super(pos, dim); + Rotation = rot; + } + + public TeleportDestination(Vector3d pos, Vector2f rot, ServerLevel dim) + { + super(pos,dim); + Rotation=rot; + } + + @Override + public String toString() + { + + return NbtUtils.structureToSnbt(serialize()); + + } + + public CompoundTag serialize(){ + + CompoundTag tag = super.serializePretty(); + tag.putString("Rotation", Rotation.toString()); + + return tag; + } +} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRegistry.java b/src/main/java/com/zontreck/util/TeleportRegistry.java similarity index 84% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRegistry.java rename to src/main/java/com/zontreck/util/TeleportRegistry.java index d7a9643..915c77f 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRegistry.java +++ b/src/main/java/com/zontreck/util/TeleportRegistry.java @@ -1,9 +1,10 @@ -package dev.zontreck.essentials.commands.teleport; +package com.zontreck.util; import java.util.ArrayList; import java.util.List; public class TeleportRegistry { + private static final List lst; static{ diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRunnable.java b/src/main/java/com/zontreck/util/TeleportRunnable.java similarity index 76% rename from src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRunnable.java rename to src/main/java/com/zontreck/util/TeleportRunnable.java index 5df1aea..cf92921 100644 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TeleportRunnable.java +++ b/src/main/java/com/zontreck/util/TeleportRunnable.java @@ -1,56 +1,54 @@ -package dev.zontreck.essentials.commands.teleport; - - -import dev.zontreck.ariaslib.terminal.Task; -import dev.zontreck.essentials.events.TeleportEvent; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraftforge.common.MinecraftForge; - -public class TeleportRunnable extends Task -{ - - public final boolean IgnoreEvent; - public final TeleportContainer Action; - public TeleportRunnable(TeleportContainer cont, boolean eventless){ - super("TP",true); - Action = cont; - IgnoreEvent=eventless; - } - - @Override - public void run() { - Action.OldPosition = new WorldPosition(Action.PlayerInst); - - if(!IgnoreEvent) - { - - if(MinecraftForge.EVENT_BUS.post(new TeleportEvent(Action))) - { - return; - } - } - - Action.PlayerInst.teleportTo(Action.Dimension, Action.Position.x, Action.Position.y, Action.Position.z, Action.Rotation.y, Action.Rotation.x); - - Action.PlayerInst.onUpdateAbilities(); - - - Thread tx = new Thread(new Task("tp_action",true){ - public final TeleportContainer container=Action; - @Override - public void run() - { - try { - Thread.sleep(1000); - } catch (InterruptedException e) { - e.printStackTrace(); - } - container.PlayerInst.onUpdateAbilities(); - container.PlayerInst.setPos(container.Position); - container.PlayerInst.giveExperiencePoints(1); - } - }); - - tx.start(); - } -} +package com.zontreck.util; + +import com.zontreck.events.TeleportEvent; +import com.zontreck.libzontreck.vectors.WorldPosition; +import net.minecraftforge.common.MinecraftForge; + +import java.time.Duration; + +public class TeleportRunnable implements Runnable { + + public final boolean IgnoreEvent; + public final TeleportContainer Action; + public TeleportRunnable(TeleportContainer cont, boolean eventless){ + Action = cont; + IgnoreEvent=eventless; + } + + @Override + public void run() { + Action.OldPosition = new WorldPosition(Action.PlayerInst); + + if(!IgnoreEvent) + { + + if(MinecraftForge.EVENT_BUS.post(new TeleportEvent(Action))) + { + return; + } + } + + Action.PlayerInst.teleportTo(Action.Dimension, Action.Position.x, Action.Position.y, Action.Position.z, Action.Rotation.y, Action.Rotation.x); + + Action.PlayerInst.onUpdateAbilities(); + + + Thread tx = new Thread(new Runnable(){ + public final TeleportContainer container=Action; + @Override + public void run() + { + try { + Thread.sleep(1000); + } catch (InterruptedException e) { + e.printStackTrace(); + } + container.PlayerInst.onUpdateAbilities(); + container.PlayerInst.setPos(container.Position); + container.PlayerInst.giveExperiencePoints(1); + } + }); + + tx.start(); + } +} diff --git a/src/main/java/dev/zontreck/essentials/AriasEssentials.java b/src/main/java/dev/zontreck/essentials/AriasEssentials.java deleted file mode 100644 index 1262a1c..0000000 --- a/src/main/java/dev/zontreck/essentials/AriasEssentials.java +++ /dev/null @@ -1,186 +0,0 @@ -package dev.zontreck.essentials; - -import java.time.Instant; -import java.util.HashMap; -import java.util.Map; -import java.util.Random; -import java.util.UUID; -import java.util.concurrent.Executors; -import java.util.concurrent.ScheduledExecutorService; -import java.util.concurrent.ScheduledThreadPoolExecutor; - -import dev.zontreck.essentials.antiexplode.CreeperHealQueue; -import dev.zontreck.essentials.blocks.ModBlocks; -import dev.zontreck.essentials.client.Keybindings; -import dev.zontreck.essentials.client.renderer.TimeBoostEntityRenderer; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.configs.client.AEClientConfig; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.entities.ModEntities; -import dev.zontreck.essentials.events.MainEventHandlers; -import dev.zontreck.essentials.events.TeleportEvent; -import dev.zontreck.essentials.client.renderer.HeartsRenderer; -import dev.zontreck.essentials.imc.Events; -import dev.zontreck.essentials.items.CreativeModeTabs; -import dev.zontreck.essentials.items.ModItems; -import dev.zontreck.essentials.networking.ModMessages; -import dev.zontreck.essentials.rtp.RTPCaches; -import dev.zontreck.essentials.rtp.RTPCachesEventHandlers; -import dev.zontreck.essentials.util.BackPositionCaches; -import dev.zontreck.essentials.util.CommandCooldowns; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueue; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; -import dev.zontreck.libzontreck.memory.world.SavedBlock; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.SNbtIo; -import dev.zontreck.libzontreck.util.ServerUtilities; -import dev.zontreck.libzontreck.vectors.Vector3i; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.client.renderer.entity.EntityRenderers; -import net.minecraft.core.BlockPos; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.RegisterKeyMappingsEvent; -import net.minecraftforge.event.entity.living.LivingDeathEvent; -import net.minecraftforge.event.level.ExplosionEvent; -import net.minecraftforge.eventbus.api.EventPriority; -import net.minecraftforge.fml.event.lifecycle.FMLClientSetupEvent; -import org.slf4j.Logger; - -import com.mojang.logging.LogUtils; - -import dev.zontreck.essentials.commands.CommandRegister; -import dev.zontreck.essentials.homes.Homes; -import dev.zontreck.essentials.util.EssentialsDatastore; -import dev.zontreck.essentials.util.ForgeEventsHandler; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.event.server.ServerStartedEvent; -import net.minecraftforge.event.server.ServerStoppingEvent; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.fml.event.lifecycle.FMLCommonSetupEvent; -import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; - -@Mod(AriasEssentials.MODID) -public class AriasEssentials { - public static final String MODID = "ariasessentials"; - public static final Random random = new Random(Instant.now().getEpochSecond()); - public static final Logger LOGGER = LogUtils.getLogger(); - public static boolean ALIVE; - public static Map player_homes = new HashMap<>(); - public static boolean DEBUG = true; - public static ScheduledExecutorService executorService = Executors.newScheduledThreadPool(1); - - - - public AriasEssentials() - { - IEventBus bus = FMLJavaModLoadingContext.get().getModEventBus(); - bus.addListener(this::setup); - - LOGGER.info("/!\\ Loading Aria's Essentials Configuration Files /!\\"); - AEServerConfig.loadFromFile(); - AEClientConfig.loadFromFile(); - LOGGER.info("/!\\ DONE LOADING AECONFIG /!\\"); - - - - - EssentialsDatastore.initialize(); - MinecraftForge.EVENT_BUS.register(this); - MinecraftForge.EVENT_BUS.register(new CommandRegister()); - MinecraftForge.EVENT_BUS.register(new ForgeEventsHandler()); - MinecraftForge.EVENT_BUS.register(new RTPCachesEventHandlers()); - MinecraftForge.EVENT_BUS.register(new CommandCooldowns()); - MinecraftForge.EVENT_BUS.register(RTPCachesEventHandlers.class); - MinecraftForge.EVENT_BUS.register(Events.class); - MinecraftForge.EVENT_BUS.register(MainEventHandlers.class); - - ModItems.register(bus); - ModBlocks.register(bus); - ModEntities.register(bus); - } - - - @SubscribeEvent - public void onTeleport(TeleportEvent event) - { - if(TeleportActioner.isBlacklistedDimension(event.getContainer().Dimension)) - { - event.setCanceled(true); - } else { - if(AEServerConfig.getInstance().back.Enabled && AEServerConfig.getInstance().back.EnabledForTp) - BackPositionCaches.Update(event.getContainer().PlayerInst.getUUID(), event.getContainer().OldPosition); - } - } - - public void setup(FMLCommonSetupEvent ev) - { - ModMessages.register(); - } - - - @SubscribeEvent - public void onServerStart(final ServerStartedEvent ev) - { - ALIVE=true; - // Print out the server config - - LOGGER.debug(NbtUtils.structureToSnbt(AEServerConfig.getInstance().serialize())); - } - - - @SubscribeEvent - public void onServerStop(final ServerStoppingEvent ev) - { - ALIVE=false; - LOGGER.info("Tearing down Aria's Essentials functions and tasks"); - RTPCaches.Locations.clear(); - } - - @SubscribeEvent (priority = EventPriority.HIGHEST) - public void onPlayerDied(final LivingDeathEvent ev) - { - if(ev.getEntity() instanceof Player p) - { - if(ServerUtilities.isServer()) - { - ServerPlayer sp = ServerUtilities.getPlayerByID(p.getUUID().toString()); - // Update player back position! - WorldPosition wp = new WorldPosition(sp); - BackPositionCaches.Update(sp.getUUID(), wp); - - ChatHelpers.broadcastTo(p, ChatHelpers.macro(Messages.USE_BACK_INTRO), sp.server); - } - } - } - - - // You can use EventBusSubscriber to automatically register all static methods in the class annotated with @SubscribeEvent - @Mod.EventBusSubscriber(modid = AriasEssentials.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) - public static class ClientModEvents { - @SubscribeEvent - public static void onClientSetup(FMLClientSetupEvent event) { - - LOGGER.info("Client setup"); - - EntityRenderers.register(ModEntities.TIAB_ENTITY.get(), TimeBoostEntityRenderer::new); - MinecraftForge.EVENT_BUS.register(new HeartsRenderer()); - } - - @OnlyIn(Dist.CLIENT) - @SubscribeEvent - public static void onRegisterKeyBinds(RegisterKeyMappingsEvent ev) - { - ev.register(Keybindings.AUTOWALK); - } - - } - -} diff --git a/src/main/java/dev/zontreck/essentials/antiexplode/CreeperHealQueue.java b/src/main/java/dev/zontreck/essentials/antiexplode/CreeperHealQueue.java deleted file mode 100644 index 5c0179e..0000000 --- a/src/main/java/dev/zontreck/essentials/antiexplode/CreeperHealQueue.java +++ /dev/null @@ -1,43 +0,0 @@ -package dev.zontreck.essentials.antiexplode; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.memory.world.*; -import net.minecraft.world.level.block.Blocks; - -import java.util.concurrent.ScheduledFuture; -import java.util.concurrent.TimeUnit; - -public class CreeperHealQueue extends BlockRestoreQueue -{ - - @Override - public String getRestoreQueueName() { - return "creeperheal"; - } - - @Override - public boolean usesDatabase() { - return true; - } - - @Override - public void databaseUpdate(PrimitiveBlock block) { - if(Blocks.AIR == block.blockType) return; // Do not cache air - super.databaseUpdate(block); - notifyDirtyQueue(true); - } - - @Override - public void notifyDirtyQueue(boolean b) { - // Queue was modified. - // Restart the timer for repairing blocks if necessary - } - - @Override - public boolean sorted() { - return true; - } - - -} diff --git a/src/main/java/dev/zontreck/essentials/blocks/BlockCustomVoxels.java b/src/main/java/dev/zontreck/essentials/blocks/BlockCustomVoxels.java deleted file mode 100644 index 74c98d2..0000000 --- a/src/main/java/dev/zontreck/essentials/blocks/BlockCustomVoxels.java +++ /dev/null @@ -1,16 +0,0 @@ -package dev.zontreck.essentials.blocks; - -import net.minecraft.world.level.block.Block; -import net.minecraft.world.phys.shapes.VoxelShape; - -public class BlockCustomVoxels extends Block { - VoxelShape shape; - public BlockCustomVoxels(Properties pProperties, VoxelShape shape) { - super(pProperties); - this.shape=shape; - } - - public VoxelShape getShape() { - return shape; - } -} diff --git a/src/main/java/dev/zontreck/essentials/blocks/ModBlocks.java b/src/main/java/dev/zontreck/essentials/blocks/ModBlocks.java deleted file mode 100644 index 1429fe5..0000000 --- a/src/main/java/dev/zontreck/essentials/blocks/ModBlocks.java +++ /dev/null @@ -1,303 +0,0 @@ -package dev.zontreck.essentials.blocks; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.items.CreativeModeTabs; -import net.minecraft.core.BlockPos; -import net.minecraft.world.entity.EntityType; -import net.minecraft.world.item.BlockItem; -import net.minecraft.world.item.Item; -import net.minecraft.world.level.BlockGetter; -import net.minecraft.world.level.block.*; -import net.minecraft.world.level.block.entity.BlockEntity; -import net.minecraft.world.level.block.entity.ShulkerBoxBlockEntity; -import net.minecraft.world.level.block.state.BlockBehaviour; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -public class ModBlocks { - - private static BlockBehaviour.StatePredicate shulkerState = (p_152653_, p_152654_, p_152655_) -> { - BlockEntity blockentity = p_152654_.getBlockEntity(p_152655_); - if (!(blockentity instanceof ShulkerBoxBlockEntity)) { - return true; - } else { - ShulkerBoxBlockEntity shulkerboxblockentity = (ShulkerBoxBlockEntity)blockentity; - return shulkerboxblockentity.isClosed(); - } - }; - - - public static final DeferredRegister BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, AriasEssentials.MODID); - public static final DeferredRegister ITEMS = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MODID); - - private static boolean never(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { - return false; - } - private static boolean always(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos) { - return true; - } - - - private static boolean neverSpawn(BlockState blockState, BlockGetter blockGetter, BlockPos blockPos, EntityType entityType) { - return false; - } - - public static void register(IEventBus bus){ - BLOCKS.register(bus); - ITEMS.register(bus); - AriasEssentials.LOGGER.info("Registering all blocks..."); - } - - private static BlockBehaviour.Properties standardBehavior() - { - return BlockBehaviour.Properties.copy(Blocks.STONE).requiresCorrectToolForDrops().strength(7F).destroyTime(6).isValidSpawn(ModBlocks::neverSpawn); - } - private static BlockBehaviour.Properties gratingBlock() - { - return standardBehavior() - .noOcclusion() - .strength(0.5f, 2000f) - .isViewBlocking(ModBlocks::never); - } - - private static BlockBehaviour.Properties stoneLikeBehavior() - { - return BlockBehaviour.Properties.copy(Blocks.COBBLESTONE).isValidSpawn(ModBlocks::neverSpawn); - } - - private static BlockBehaviour.Properties explosionResistance() - { - return standardBehavior().explosionResistance(1200); - } - - private static BlockBehaviour.Properties noViewBlocking() - { - return standardBehavior().noOcclusion().isViewBlocking(ModBlocks::never); - } - - private static BlockBehaviour.Properties fullBright() - { - return standardBehavior().lightLevel((X)->{ - return 15; - }).noOcclusion(); - } - - private static BlockBehaviour.Properties standard = standardBehavior(); - - private static BlockBehaviour.Properties explosionResistance = explosionResistance(); - - private static BlockBehaviour.Properties noViewBlocking = noViewBlocking(); - - private static BlockBehaviour.Properties stone = stoneLikeBehavior(); - - private static BlockBehaviour.Properties gratingBlock = gratingBlock(); - - private static BlockBehaviour.Properties poolLightClean = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 15); - private static BlockBehaviour.Properties poolLightDirty = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 12); - private static BlockBehaviour.Properties poolLightFilthy = BlockBehaviour.Properties.copy(Blocks.GLASS).lightLevel((X) -> 4); - - - public static RegistryObject registerWithItem(RegistryObject blk, Item.Properties props) - { - CreativeModeTabs.addToAETab(ITEMS.register(blk.getId().getPath(), ()->new BlockItem(blk.get(), props))); - - return blk; - } - - - /* - - ENGINEERS DECOR BLOCKS - - */ - - public static final RegistryObject CLINKER_BRICK_BLOCK = registerWithItem(BLOCKS.register("clinker_brick_block", ()->new Block(standardBehavior().strength(0.5f, 7f).sound(SoundType.STONE) - )), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_SLAB = registerWithItem(BLOCKS.register("clinker_brick_slab", ()->new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE_SLAB))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAIRS = registerWithItem(BLOCKS.register("clinker_brick_stairs", ()->new StairBlock(CLINKER_BRICK_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE_STAIRS))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_WALL = registerWithItem(BLOCKS.register("clinker_brick_wall", ()->new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE_BRICK_WALL))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAINED_BLOCK = registerWithItem(BLOCKS.register("clinker_brick_stained_block", ()->new Block(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAINED_SLAB = registerWithItem(BLOCKS.register("clinker_brick_stained_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject CLINKER_BRICK_STAINED_STAIRS = registerWithItem(BLOCKS.register("clinker_brick_stained_stairs", ()-> new StairBlock(CLINKER_BRICK_STAINED_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - /*public static final RegistryObject CLINKER_BRICK_VERTICAL_SLAB_STRUCTURED = registerWithItem(BLOCKS.register("clinker_brick_vertical_slab_structured", () -> new StandardBlocks.HorizontalWaterLoggable( - StandardBlocks.CFG_CUTOUT | StandardBlocks.CFG_HORIZIONTAL | StandardBlocks.CFG_LOOK_PLACEMENT, - BlockBehaviour.Properties.of().strength(0.5f, 7f).sound(SoundType.STONE), - new AABB[]{ - Auxiliaries.getPixeledAABB(0, 0, 0, 16, 16, 8), - } - )), new Item.Properties());*/ - - public static final RegistryObject SLAG_BRICK_BLOCK = registerWithItem(BLOCKS.register("slag_brick_block", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject SLAG_BRICK_SLAB = registerWithItem(BLOCKS.register("slag_brick_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject SLAG_BRICK_STAIRS = registerWithItem(BLOCKS.register("slag_brick_stairs", ()-> new StairBlock(SLAG_BRICK_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE))), new Item.Properties()); - - public static final RegistryObject SLAG_BRICK_WALL = registerWithItem(BLOCKS.register("slag_brick_wall", ()-> new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE_BRICK_WALL))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_BLOCK = registerWithItem(BLOCKS.register("rebar_concrete", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE).isValidSpawn(ModBlocks::neverSpawn).strength(1f, 2000f))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_SLAB = registerWithItem(BLOCKS.register("rebar_concrete_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_STAIRS = registerWithItem(BLOCKS.register("rebar_concrete_stairs", ()-> new StairBlock(ModBlocks.REBAR_CONCRETE_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_WALL = registerWithItem(BLOCKS.register("rebar_concrete_wall", ()-> new WallBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_TILE_BLOCK = registerWithItem(BLOCKS.register("rebar_concrete_tile", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.STONE).isValidSpawn(ModBlocks::neverSpawn).strength(1f, 2000f))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_TILE_SLAB = registerWithItem(BLOCKS.register("rebar_concrete_tile_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - public static final RegistryObject REBAR_CONCRETE_TILE_STAIRS = registerWithItem(BLOCKS.register("rebar_concrete_tile_stairs", ()-> new StairBlock(ModBlocks.REBAR_CONCRETE_BLOCK.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.STONE).strength(1f, 2000f).isValidSpawn(ModBlocks::neverSpawn))), new Item.Properties()); - - /*public static final RegistryObject REBAR_CONCRETE_HALFSLAB = registerWithItem(BLOCKS.register("halfslab_rebar_concrete", () -> new SlabSliceBlock( - StandardBlocks.CFG_CUTOUT, - BlockBehaviour.Properties.of().strength(1.0f, 2000f).sound(SoundType.STONE).isValidSpawn(ModBlocks::neverSpawn) - )), new Item.Properties());*/ - - public static final RegistryObject PANZER_GLASS_BLOCK = registerWithItem(BLOCKS.register("panzerglass_block", ()-> new Block(noViewBlocking().noOcclusion().strength(0.5f, 2000f).isValidSpawn(ModBlocks::neverSpawn).sound(SoundType.METAL))), new Item.Properties()); - - public static final RegistryObject PANZER_GLASS_SLAB = registerWithItem(BLOCKS.register("panzerglass_slab", ()-> new SlabBlock(noViewBlocking().noOcclusion().strength(0.5f, 2000f).isValidSpawn(ModBlocks::neverSpawn).sound(SoundType.METAL))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_PLANKS = registerWithItem(BLOCKS.register("old_industrial_wood_planks", ()-> new Block(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_SLAB = registerWithItem(BLOCKS.register("old_industrial_wood_slab", ()-> new SlabBlock(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_STAIRS = registerWithItem(BLOCKS.register("old_industrial_wood_stairs", ()-> new StairBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_PLANKS.get()::defaultBlockState, BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).sound(SoundType.WOOD))), new Item.Properties()); - - public static final RegistryObject OLD_INDUSTRIAL_WOOD_DOOR = registerWithItem(BLOCKS.register("old_industrial_wood_door", ()-> new DoorBlock(BlockBehaviour.Properties.copy(Blocks.OAK_PLANKS).strength(0.5f, 6f).noOcclusion().sound(SoundType.WOOD))), new Item.Properties()); - - /* - - public static final RegistryObject STEEL_CATWALK = registerWithItem(BLOCKS.register("steel_catwalk", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 0, 0, 16, 2, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_CATWALK_TOP = registerWithItem(BLOCKS.register("steel_catwalk_top", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 14, 0, 16, 16, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_GRATING = registerWithItem(BLOCKS.register("steel_floor_grating", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 0, 0, 16, 2, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_GRATING_TOP = registerWithItem(BLOCKS.register("steel_floor_grating_top", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 14, 0, 16, 16, 16))), new Item.Properties()); - - public static final RegistryObject STEEL_TABLE = registerWithItem(BLOCKS.register("steel_table", ()-> new BlockCustomVoxels(gratingBlock, Block.box(0, 0, 0, 16, 16, 16))), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_NORTH = Shapes.join(Block.box(1, 10, 0, 15, 12, 8), Block.box(1, 2, 8, 15, 4, 16), BooleanOp.OR); - - private static final VoxelShape STEEL_CATWALK_STAIRS_SOUTH = Shapes.join(Block.box(1, 10, 8, 15, 12, 16), Block.box(1, 2, 0, 15, 4, 8), BooleanOp.OR); - - private static final VoxelShape STEEL_CATWALK_STAIRS_EAST = Shapes.join(Block.box(8, 10, 1, 16, 12, 15), Block.box(0, 2, 1, 8, 4, 15), BooleanOp.OR); - - private static final VoxelShape STEEL_CATWALK_STAIRS_WEST = Shapes.join(Block.box(0, 10, 1, 8, 12, 15), Block.box(8, 2, 1, 16, 4, 15), BooleanOp.OR); - - public static final RegistryObject STEEL_CATWALK_STAIRS = registerWithItem(BLOCKS.register("steel_catwalk_stairs", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_NORTH, STEEL_CATWALK_STAIRS_SOUTH, STEEL_CATWALK_STAIRS_WEST, STEEL_CATWALK_STAIRS_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_NORTH = Stream.of( - Block.box(1, 2, 8, 15, 4, 16), - Block.box(1, 10, 0, 15, 12, 8), - Block.box(0, 0, 0, 1, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_SOUTH = Stream.of( - Block.box(1, 2, 0, 15, 4, 8), - Block.box(1, 10, 8, 15, 12, 16), - Block.box(15, 0, 0, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_EAST = Stream.of( - Block.box(0, 2, 1, 8, 4, 15), - Block.box(8, 10, 1, 16, 12, 15), - Block.box(0, 0, 0, 16, 21, 1) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_LR_WEST = Stream.of( - Block.box(8, 2, 1, 16, 4, 15), - Block.box(0, 10, 1, 8, 12, 15), - Block.box(0, 0, 15, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - public static final RegistryObject STEEL_CATWALK_STAIRS_LR = registerWithItem(BLOCKS.register("steel_catwalk_stairs_lr", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_LR_NORTH, STEEL_CATWALK_STAIRS_LR_SOUTH, STEEL_CATWALK_STAIRS_LR_WEST, STEEL_CATWALK_STAIRS_LR_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_NORTH = Stream.of( - Block.box(1, 2, 8, 15, 4, 16), - Block.box(1, 10, 0, 15, 12, 8), - Block.box(15, 0, 0, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_SOUTH = Stream.of( - Block.box(1, 2, 0, 15, 4, 8), - Block.box(1, 10, 8, 15, 12, 16), - Block.box(0, 0, 0, 1, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_EAST = Stream.of( - Block.box(0, 2, 1, 8, 4, 15), - Block.box(8, 10, 1, 16, 12, 15), - Block.box(0, 0, 15, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_RR_WEST = Stream.of( - Block.box(8, 2, 1, 16, 4, 15), - Block.box(0, 10, 1, 8, 12, 15), - Block.box(0, 0, 0, 16, 21, 1) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - public static final RegistryObject STEEL_CATWALK_STAIRS_RR = registerWithItem(BLOCKS.register("steel_catwalk_stairs_rr", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_RR_NORTH, STEEL_CATWALK_STAIRS_RR_SOUTH, STEEL_CATWALK_STAIRS_RR_WEST, STEEL_CATWALK_STAIRS_RR_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_NORTH = Stream.of( - Block.box(1, 10, 0, 15, 12, 8), - Block.box(1, 2, 8, 15, 4, 16), - Block.box(0, 0, 0, 1, 21, 16), - Block.box(15, 0, 0, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_SOUTH = Stream.of( - Block.box(1, 10, 8, 15, 12, 16), - Block.box(1, 2, 0, 15, 4, 8), - Block.box(15, 0, 0, 16, 21, 16), - Block.box(0, 0, 0, 1, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_WEST = Stream.of( - Block.box(8, 10, 1, 16, 12, 15), - Block.box(0, 2, 1, 8, 4, 15), - Block.box(0, 0, 0, 16, 21, 1), - Block.box(0, 0, 15, 16, 21, 16) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - private static final VoxelShape STEEL_CATWALK_STAIRS_DR_EAST = Stream.of( - Block.box(0, 10, 1, 8, 12, 15), - Block.box(8, 2, 1, 16, 4, 15), - Block.box(0, 0, 15, 16, 21, 16), - Block.box(0, 0, 0, 16, 21, 1) - ).reduce((v1, v2) -> Shapes.join(v1, v2, BooleanOp.OR)).get(); - - public static final RegistryObject STEEL_CATWALK_STAIRS_DR = registerWithItem(BLOCKS.register("steel_catwalk_stairs_dr", ()-> new RotatableBlockCustomVoxels(gratingBlock, STEEL_CATWALK_STAIRS_DR_NORTH, STEEL_CATWALK_STAIRS_DR_SOUTH, STEEL_CATWALK_STAIRS_DR_WEST, STEEL_CATWALK_STAIRS_DR_EAST)), new Item.Properties()); - - private static final VoxelShape STEEL_RAILING_NORTH = Block.box(0.25, 0.25, 0.25, 15.75, 16, 1.25); - private static final VoxelShape STEEL_RAILING_SOUTH = Block.box(0.25, 0.25, 14.75, 15.75, 16, 15.75); - - private static final VoxelShape STEEL_RAILING_WEST = Block.box(14.75, 0.25, 0.25, 15.75, 16, 15.75); - private static final VoxelShape STEEL_RAILING_EAST = Block.box(0.25, 0.25, 0.25, 1.25, 16, 15.75); - public static final RegistryObject STEEL_RAILING = registerWithItem(BLOCKS.register("steel_railing", ()->new RotatableBlockCustomVoxels(gratingBlock, STEEL_RAILING_NORTH, STEEL_RAILING_SOUTH, STEEL_RAILING_WEST, STEEL_RAILING_EAST)), new Item.Properties()); - - public static final RegistryObject STEEL_CATWALK_BLOCK = registerWithItem(BLOCKS.register("steel_catwalk_block", ()-> new Block(gratingBlock)), new Item.Properties()); - - - */ - -/* - public static final VoxelShape SHAPE_T_FLIPFLOP = Block.box(0, 0, 0, 16, 1, 16); - - public static final RegistryObject TFLIPFLOP_BLOCK = registerWithItem(BLOCKS.register("tflipflop", () -> new TFlipFlopBlock(noViewBlocking().noOcclusion().noCollission())), new Item.Properties()); - - - */ - - -} diff --git a/src/main/java/dev/zontreck/essentials/client/AutoWalk.java b/src/main/java/dev/zontreck/essentials/client/AutoWalk.java deleted file mode 100644 index 2008830..0000000 --- a/src/main/java/dev/zontreck/essentials/client/AutoWalk.java +++ /dev/null @@ -1,65 +0,0 @@ -package dev.zontreck.essentials.client; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.client.Minecraft; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.InputEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -import java.time.Instant; -import java.util.UUID; - -@OnlyIn(Dist.CLIENT) -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, value = Dist.CLIENT) -public class AutoWalk { - private static boolean isWalking = false; - private static boolean autoJump = false; - static Thread runner; - static long lastPress; - - @SubscribeEvent - public static void onKeyPress(InputEvent.Key event) { - if(Keybindings.AUTOWALK.matches(event.getKey(), event.getScanCode()) && Minecraft.getInstance().screen == null && Keybindings.AUTOWALK.isDown()) - { - lastPress = Instant.now().getEpochSecond(); - if(isWalking) - { - stopWalking(); - } else startWalking(); - } - } - - - private static void startWalking() { - isWalking=true; - autoJump = Minecraft.getInstance().options.autoJump().get(); - Minecraft.getInstance().options.autoJump().set(true); - - - Minecraft.getInstance().player.displayClientMessage(ChatHelpers.macro(Messages.ESSENTIALS_PREFIX + "!Dark_Green!AutoWalking started"), false); - - runner = new Thread(()->{ - while(AutoWalk.isWalking) - { - if(!Minecraft.getInstance().options.keyUp.isDown()) - Minecraft.getInstance().options.keyUp.setDown(true); - } - }); - runner.start(); - } - - private static void stopWalking() { - isWalking=false; - runner.interrupt(); - runner=null; - Minecraft.getInstance().options.autoJump().set(autoJump); - Minecraft.getInstance().options.keyUp.setDown(false); - - Minecraft.getInstance().player.displayClientMessage(ChatHelpers.macro(Messages.ESSENTIALS_PREFIX + "!Dark_Green!AutoWalking stopped"), false); - - } -} diff --git a/src/main/java/dev/zontreck/essentials/client/Keybindings.java b/src/main/java/dev/zontreck/essentials/client/Keybindings.java deleted file mode 100644 index 612567f..0000000 --- a/src/main/java/dev/zontreck/essentials/client/Keybindings.java +++ /dev/null @@ -1,29 +0,0 @@ -package dev.zontreck.essentials.client; - - -import com.mojang.blaze3d.platform.InputConstants; -import net.minecraft.client.KeyMapping; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.RegisterKeyMappingsEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -@OnlyIn(Dist.CLIENT) -public class Keybindings { - public static final String KEY_CATEGORY_ESSENTIALS = "key.category.ariasessentials"; - public static final String KEY_AUTOWALK = "key.ariasessentials.autowalk"; - - public static final KeyMapping AUTOWALK = createKeyMapping(KEY_AUTOWALK, InputConstants.KEY_CAPSLOCK, KEY_CATEGORY_ESSENTIALS); - - private static KeyMapping createKeyMapping(String name, int keycode, String category){ - final KeyMapping key = new KeyMapping(name, keycode, category); - return key; - } - - @SubscribeEvent - public static void registerKeyMappings(RegisterKeyMappingsEvent event) - { - event.register(AUTOWALK); - } -} - diff --git a/src/main/java/dev/zontreck/essentials/client/renderer/HeartsRenderer.java b/src/main/java/dev/zontreck/essentials/client/renderer/HeartsRenderer.java deleted file mode 100644 index 0d011d1..0000000 --- a/src/main/java/dev/zontreck/essentials/client/renderer/HeartsRenderer.java +++ /dev/null @@ -1,336 +0,0 @@ -/* - * - * DISCLAIMER: This code was taken from Mantle, and will be modified to fit the needs of this mod, such as adding more heat options. This code is subject to Mantle's license of MIT. - * Despite this code being taken from, and modified/updated to be modern, all textures are my own creation - * This disclaimer is here to give credit where credit is due. The author(s) of mantle have done a absolutely fantastic job. And if Mantle gets updated this shall be removed along with future plans of extra hearts and color options. - * - * - */ - -package dev.zontreck.essentials.client.renderer; - -import com.mojang.blaze3d.systems.RenderSystem; -import com.mojang.blaze3d.vertex.PoseStack; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.client.AEClientConfig; -import net.minecraft.Util; -import net.minecraft.client.Minecraft; -import net.minecraft.client.gui.Gui; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.util.Mth; -import net.minecraft.world.effect.MobEffectInstance; -import net.minecraft.world.effect.MobEffects; -import net.minecraft.world.entity.Entity; -import net.minecraft.world.entity.ai.attributes.AttributeInstance; -import net.minecraft.world.entity.ai.attributes.Attributes; -import net.minecraft.world.entity.player.Player; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.api.distmarker.OnlyIn; -import net.minecraftforge.client.event.RenderGuiOverlayEvent; -import net.minecraftforge.client.gui.overlay.ForgeGui; -import net.minecraftforge.client.gui.overlay.GuiOverlayManager; -import net.minecraftforge.client.gui.overlay.NamedGuiOverlay; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.eventbus.api.EventPriority; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.util.Random; - -@OnlyIn(Dist.CLIENT) -public class HeartsRenderer { - private static final ResourceLocation ICON_HEARTS = new ResourceLocation(AriasEssentials.MODID, - "textures/gui/hearts.png"); - private static final ResourceLocation ICON_ABSORB = new ResourceLocation(AriasEssentials.MODID, - "textures/gui/absorb.png"); - private static final ResourceLocation ICON_VANILLA = Gui.GUI_ICONS_LOCATION; - - private final Minecraft mc = Minecraft.getInstance(); - - private int playerHealth = 0; - private int lastPlayerHealth = 0; - private long healthUpdateCounter = 0; - private long lastSystemTime = 0; - private final Random rand = new Random(); - - private int regen; - - /** - * Draws a texture to the screen - * - * @param matrixStack Matrix stack instance - * @param x X position - * @param y Y position - * @param textureX Texture X - * @param textureY Texture Y - * @param width Width to draw - * @param height Height to draw - */ - private void blit(PoseStack matrixStack, int x, int y, int textureX, int textureY, int width, int height, ResourceLocation resource) { - blit(matrixStack, x, y, textureX, textureY, width, height, resource); - } - - /* HUD */ - - /** - * Event listener - * - * @param event Event instance - */ - @SubscribeEvent(priority = EventPriority.LOW) - public void renderHealthbar(RenderGuiOverlayEvent.Pre event) { - NamedGuiOverlay ActualOverlay = GuiOverlayManager.findOverlay(new ResourceLocation("minecraft:player_health")); - - if (ActualOverlay == null) { - if (GuiOverlayManager.getOverlays() == null) { - AriasEssentials.LOGGER.info("Overlays non existent?!"); - } - for (NamedGuiOverlay overlay : GuiOverlayManager.getOverlays()) { - // Next print - // LibZontreck.LOGGER.info("GUI OVERLAY: "+overlay.id().getPath()); - - if (overlay.id().getPath().equals("player_health")) { - ActualOverlay = overlay; - break; - } - } - } - if (event.isCanceled() || !AEClientConfig.getInstance().EnableHearts || event.getOverlay() != ActualOverlay) { - return; - } - // ensure its visible - if (!(mc.gui instanceof ForgeGui gui) || mc.options.hideGui || !gui.shouldDrawSurvivalElements()) { - return; - } - Entity renderViewEnity = this.mc.getCameraEntity(); - if (!(renderViewEnity instanceof Player player)) { - return; - } - gui.setupOverlayRenderState(true, false); - - this.mc.getProfiler().push("health"); - - // extra setup stuff from us - int left_height = gui.leftHeight; - int width = this.mc.getWindow().getGuiScaledWidth(); - int height = this.mc.getWindow().getGuiScaledHeight(); - int updateCounter = this.mc.gui.getGuiTicks(); - - // start default forge/mc rendering - // changes are indicated by comment - - int health = Mth.ceil(player.getHealth()); - boolean highlight = this.healthUpdateCounter > (long) updateCounter - && (this.healthUpdateCounter - (long) updateCounter) / 3L % 2L == 1L; - - if (health < this.playerHealth && player.invulnerableTime > 0) { - this.lastSystemTime = Util.getMillis(); - this.healthUpdateCounter = (updateCounter + 20); - } else if (health > this.playerHealth && player.invulnerableTime > 0) { - this.lastSystemTime = Util.getMillis(); - this.healthUpdateCounter = (updateCounter + 10); - } - - if (Util.getMillis() - this.lastSystemTime > 1000L) { - this.playerHealth = health; - this.lastPlayerHealth = health; - this.lastSystemTime = Util.getMillis(); - } - - this.playerHealth = health; - int healthLast = this.lastPlayerHealth; - - AttributeInstance attrMaxHealth = player.getAttribute(Attributes.MAX_HEALTH); - float healthMax = attrMaxHealth == null ? 0 : (float) attrMaxHealth.getValue(); - float absorb = Mth.ceil(player.getAbsorptionAmount()); - - // CHANGE: simulate 10 hearts max if there's more, so vanilla only renders one - // row max - healthMax = Math.min(healthMax, 20f); - health = Math.min(health, 20); - absorb = Math.min(absorb, 20); - - int healthRows = Mth.ceil((healthMax + absorb) / 2.0F / 10.0F); - int rowHeight = Math.max(10 - (healthRows - 2), 3); - - this.rand.setSeed(updateCounter * 312871L); - - int left = width / 2 - 91; - int top = height - left_height; - // change: these are unused below, unneeded? should these adjust the Forge - // variable? - // left_height += (healthRows * rowHeight); - // if (rowHeight != 10) left_height += 10 - rowHeight; - - this.regen = -1; - if (player.hasEffect(MobEffects.REGENERATION)) { - this.regen = updateCounter % 25; - } - - assert this.mc.level != null; - final int TOP = 9 * (this.mc.level.getLevelData().isHardcore() ? 5 : 0); - final int BACKGROUND = (highlight ? 25 : 16); - int MARGIN = 16; - if (player.hasEffect(MobEffects.POISON)) - MARGIN += 36; - else if (player.hasEffect(MobEffects.WITHER)) - MARGIN += 72; - float absorbRemaining = absorb; - - PoseStack matrixStack = event.getPoseStack(); - for (int i = Mth.ceil((healthMax + absorb) / 2.0F) - 1; i >= 0; --i) { - int row = Mth.ceil((float) (i + 1) / 10.0F) - 1; - int x = left + i % 10 * 8; - int y = top - row * rowHeight; - - if (health <= 4) - y += this.rand.nextInt(2); - if (i == this.regen) - y -= 2; - - this.blit(matrixStack, x, y, BACKGROUND, TOP, 9, 9, ICON_VANILLA); - - if (highlight) { - if (i * 2 + 1 < healthLast) { - this.blit(matrixStack, x, y, MARGIN + 54, TOP, 9, 9, ICON_VANILLA); // 6 - } else if (i * 2 + 1 == healthLast) { - this.blit(matrixStack, x, y, MARGIN + 63, TOP, 9, 9, ICON_VANILLA); // 7 - } - } - - if (absorbRemaining > 0.0F) { - if (absorbRemaining == absorb && absorb % 2.0F == 1.0F) { - this.blit(matrixStack, x, y, MARGIN + 153, TOP, 9, 9, ICON_VANILLA); // 17 - absorbRemaining -= 1.0F; - } else { - this.blit(matrixStack, x, y, MARGIN + 144, TOP, 9, 9, ICON_VANILLA); // 16 - absorbRemaining -= 2.0F; - } - } else { - if (i * 2 + 1 < health) { - this.blit(matrixStack, x, y, MARGIN + 36, TOP, 9, 9, ICON_VANILLA); // 4 - } else if (i * 2 + 1 == health) { - this.blit(matrixStack, x, y, MARGIN + 45, TOP, 9, 9, ICON_VANILLA); // 5 - } - } - } - - this.renderExtraHearts(matrixStack, left, top, player); - this.renderExtraAbsorption(matrixStack, left, top - rowHeight, player); - - RenderSystem.setShaderTexture(0, ICON_VANILLA); - gui.leftHeight += 10; - if (absorb > 0) { - gui.leftHeight += 10; - } - - event.setCanceled(true); - RenderSystem.disableBlend(); - this.mc.getProfiler().pop(); - MinecraftForge.EVENT_BUS - .post(new RenderGuiOverlayEvent.Post(mc.getWindow(), event.getPoseStack(), event.getPartialTick(), ActualOverlay)); - } - - /** - * Gets the texture from potion effects - * - * @param player Player instance - * @return Texture offset for potion effects - */ - private int getPotionOffset(Player player) { - int potionOffset = 0; - MobEffectInstance potion = player.getEffect(MobEffects.WITHER); - if (potion != null) { - potionOffset = 18; - } - potion = player.getEffect(MobEffects.POISON); - if (potion != null) { - potionOffset = 9; - } - assert this.mc.level != null; - if (this.mc.level.getLevelData().isHardcore()) { - potionOffset += 27; - } - return potionOffset; - } - - /** - * Renders the health above 10 hearts - * - * @param matrixStack Matrix stack instance - * @param xBasePos Health bar top corner - * @param yBasePos Health bar top corner - * @param player Player instance - */ - private void renderExtraHearts(PoseStack matrixStack, int xBasePos, int yBasePos, Player player) { - int potionOffset = this.getPotionOffset(player); - - // Extra hearts - RenderSystem.setShaderTexture(0, ICON_HEARTS); - int hp = Mth.ceil(player.getHealth()); - this.renderCustomHearts(matrixStack, xBasePos, yBasePos, potionOffset, hp, false); - } - - /** - * Renders the absorption health above 10 hearts - * - * @param matrixStack Matrix stack instance - * @param xBasePos Health bar top corner - * @param yBasePos Health bar top corner - * @param player Player instance - */ - private void renderExtraAbsorption(PoseStack matrixStack, int xBasePos, int yBasePos, Player player) { - int potionOffset = this.getPotionOffset(player); - - // Extra hearts - RenderSystem.setShaderTexture(0, ICON_ABSORB); - int absorb = Mth.ceil(player.getAbsorptionAmount()); - this.renderCustomHearts(matrixStack, xBasePos, yBasePos, potionOffset, absorb, true); - } - - /** - * Gets the texture offset from the regen effect - * - * @param i Heart index - * @param offset Current offset - */ - private int getYRegenOffset(int i, int offset) { - return i + offset == this.regen ? -2 : 0; - } - - /** - * Shared logic to render custom hearts - * - * @param matrixStack Matrix stack instance - * @param xBasePos Health bar top corner - * @param yBasePos Health bar top corner - * @param potionOffset Offset from the potion effect - * @param count Number to render - * @param absorb If true, render absorption hearts - */ - private void renderCustomHearts(PoseStack matrixStack, int xBasePos, int yBasePos, int potionOffset, int count, - boolean absorb) { - int regenOffset = absorb ? 10 : 0; - for (int iter = 0; iter < count / 20; iter++) { - int renderHearts = (count - 20 * (iter + 1)) / 2; - int heartIndex = iter % 11; - if (renderHearts > 10) { - renderHearts = 10; - } - for (int i = 0; i < renderHearts; i++) { - int y = this.getYRegenOffset(i, regenOffset); - if (absorb) { - this.blit(matrixStack, xBasePos + 8 * i, yBasePos + y, 0, 54, 9, 9, ICON_ABSORB); - } - this.blit(matrixStack, xBasePos + 8 * i, yBasePos + y, 18 * heartIndex, potionOffset, 9, 9, ICON_HEARTS); - } - if (count % 2 == 1 && renderHearts < 10) { - int y = this.getYRegenOffset(renderHearts, regenOffset); - if (absorb) { - this.blit(matrixStack, xBasePos + 8 * renderHearts, yBasePos + y, 0, 54, 9, 9, ICON_ABSORB); - } - this.blit(matrixStack, xBasePos + 8 * renderHearts, yBasePos + y, 9 + 18 * heartIndex, potionOffset, 9, 9, ICON_HEARTS); - } - } - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/CommandRegister.java b/src/main/java/dev/zontreck/essentials/commands/CommandRegister.java deleted file mode 100644 index 48a2ab7..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/CommandRegister.java +++ /dev/null @@ -1,47 +0,0 @@ -package dev.zontreck.essentials.commands; - -import dev.zontreck.essentials.commands.gui.HeartsCommand; -import dev.zontreck.essentials.commands.homes.DelHomeCommand; -import dev.zontreck.essentials.commands.homes.HomeCommand; -import dev.zontreck.essentials.commands.homes.HomesCommand; -import dev.zontreck.essentials.commands.homes.SetHomeCommand; -import dev.zontreck.essentials.commands.teleport.*; -import dev.zontreck.essentials.commands.warps.DelWarpCommand; -import dev.zontreck.essentials.commands.warps.RTPWarpCommand; -import dev.zontreck.essentials.commands.warps.SetWarpCommand; -import dev.zontreck.essentials.commands.warps.WarpCommand; -import dev.zontreck.essentials.commands.warps.WarpsCommand; -import dev.zontreck.essentials.warps.Warps; -import net.minecraftforge.event.RegisterCommandsEvent; -import net.minecraftforge.eventbus.api.EventPriority; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -public class CommandRegister { - @SubscribeEvent - public void onCommandRegister(final RegisterCommandsEvent ev) - { - DelHomeCommand.register(ev.getDispatcher()); - HomeCommand.register(ev.getDispatcher()); - HomesCommand.register(ev.getDispatcher()); - SetHomeCommand.register(ev.getDispatcher()); - - RTPCommand.register(ev.getDispatcher()); - TPAcceptCommand.register(ev.getDispatcher()); - TPAHereCommand.register(ev.getDispatcher()); - TPACommand.register(ev.getDispatcher()); - TPCancelCommand.register(ev.getDispatcher()); - TPDenyCommand.register(ev.getDispatcher()); - - DelWarpCommand.register(ev.getDispatcher()); - RTPWarpCommand.register(ev.getDispatcher()); - SetWarpCommand.register(ev.getDispatcher()); - WarpCommand.register(ev.getDispatcher()); - WarpsCommand.register(ev.getDispatcher()); - - HeartsCommand.register(ev.getDispatcher()); - SpawnCommand.register(ev.getDispatcher()); - BackCommand.register(ev.getDispatcher()); - - TPEffectsCommand.register(ev.getDispatcher()); - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/gui/HeartsCommand.java b/src/main/java/dev/zontreck/essentials/commands/gui/HeartsCommand.java deleted file mode 100644 index 6e869e0..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/gui/HeartsCommand.java +++ /dev/null @@ -1,46 +0,0 @@ -package dev.zontreck.essentials.commands.gui; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.BoolArgumentType; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.networking.ModMessages; -import dev.zontreck.essentials.networking.packets.s2c.S2CUpdateHearts; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraftforge.common.MinecraftForge; - -public class HeartsCommand -{ - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("hearts").executes(x->usage(x.getSource())).then(Commands.argument("compress", BoolArgumentType.bool()).executes(x->hearts(x.getSource(), BoolArgumentType.getBool(x, "compress"))))); - } - - private static int hearts(CommandSourceStack stack, boolean compressHearts) - { - - var exec = new CommandExecutionEvent(stack.getPlayer(), "hearts"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - // Send the state to the client, then update the config - // Send feedback to the user - ChatHelpers.broadcastTo(stack.getPlayer().getUUID(), ChatHelpers.macro(Messages.HEARTS_UPDATED), stack.getServer()); - - S2CUpdateHearts update = new S2CUpdateHearts(compressHearts); - ModMessages.sendToPlayer(update, stack.getPlayer()); - - return 0; - } - - private static int usage(CommandSourceStack stack) - { - ChatHelpers.broadcastTo(stack.getPlayer().getUUID(), ChatHelpers.macro(Messages.HEARTS_USAGE), stack.getServer()); - - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/BackCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/BackCommand.java deleted file mode 100644 index c513f5a..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/BackCommand.java +++ /dev/null @@ -1,48 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.util.BackPositionCaches; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraftforge.common.MinecraftForge; - -public class BackCommand -{ - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("back").executes(c->back(c.getSource()))); - } - - public static int back(CommandSourceStack ctx) - { - var exec = new CommandExecutionEvent(ctx.getPlayer(), "back"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - try { - if(!AEServerConfig.getInstance().back.Enabled && !ctx.hasPermission(ctx.getServer().getOperatorUserPermissionLevel())) - { - ChatHelpers.broadcastTo(ctx.getPlayer(), ChatHelpers.macro(Messages.TELEPORT_BACK_DISABLED), ctx.getServer()); - return 0; - } - - WorldPosition wp = BackPositionCaches.Pop(ctx.getPlayer().getUUID()); - - ChatHelpers.broadcastTo(ctx.getPlayer(), ChatHelpers.macro(Messages.TELEPORT_BACK), ctx.getServer()); - - TeleportContainer cont = new TeleportContainer(ctx.getPlayer(), wp.Position.asMinecraftVector(), ctx.getRotation(), wp.getActualDimension()); - - TeleportActioner.ApplyTeleportEffect(ctx.getPlayer()); - TeleportActioner.PerformTeleport(cont, true); - } catch (Exception e) { - ChatHelpers.broadcastTo(ctx.getPlayer(), ChatHelpers.macro(Messages.NO_BACK), ctx.getServer()); - } - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/RTPCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/RTPCommand.java deleted file mode 100644 index 16531d7..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/RTPCommand.java +++ /dev/null @@ -1,73 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.rtp.RandomPositionFactory; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class RTPCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("rtp").executes(c->rtp(c.getSource()))); - - //executes(c -> doCancel(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int rtp(CommandSourceStack source) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "rtp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - /*if(!CommandRegistry.canUse("rtp")) { - ChatServerOverride.broadcastTo(source.getPlayer().getUUID(), Component.translatable("dev.zontreck.otemod.msgs.command_cooling_down").append(Component.literal(""+CommandRegistry.getRemaining("rtp"))).append(Component.translatable("dev.zontreck.otemod.msgs.command_cooling_down_seconds")), source.getServer()); - - // exit - //return 0; // Removed until the player data registry is implemented - } - CommandRegistry.markUsed("rtp");*/ - if(!(source.getEntity() instanceof Player)){ - return 1; - } - final ServerPlayer pla = (ServerPlayer)source.getEntity(); - - //final TeleportContainer cont = new TeleportContainer(pla, Vec3.ZERO, pla.getRotationVector(), source.getLevel()); - - - - Thread tx = new Thread(new Runnable() { - @Override - public void run(){ - // We can now execute the loop to search for a safe spot! - //Vector3 v = new Vector3(); - // RTP is not designed to be safe really, but we at least want to check if where we are putting the player is air - - Vec3 pos = pla.position(); - - //boolean found_place= false; - RandomPositionFactory.beginRTP(pla, pla.getLevel()); - - - } - }); - - tx.start(); - - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/SpawnCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/SpawnCommand.java deleted file mode 100644 index a5d786e..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/SpawnCommand.java +++ /dev/null @@ -1,49 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.core.BlockPos; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class SpawnCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("spawn").executes(c-> respawn(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int respawn(CommandSourceStack source) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "spawn"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - ServerPlayer p = (ServerPlayer)source.getEntity(); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.RESPAWNING), p.server); - - BlockPos spawn = p.getLevel().getSharedSpawnPos(); - - TeleportActioner.ApplyTeleportEffect(p); - TeleportContainer cont = new TeleportContainer(p, new Vec3(spawn.getX(), spawn.getY(), spawn.getZ()), Vec2.ZERO, p.getLevel()); - TeleportActioner.PerformTeleport(cont, false); - - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/commands/teleport/TPEffectsCommand.java b/src/main/java/dev/zontreck/essentials/commands/teleport/TPEffectsCommand.java deleted file mode 100644 index 21d46ed..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/teleport/TPEffectsCommand.java +++ /dev/null @@ -1,43 +0,0 @@ -package dev.zontreck.essentials.commands.teleport; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.BoolArgumentType; -import dev.zontreck.essentials.Messages; -import dev.zontreck.libzontreck.chestgui.ChestGUI; -import dev.zontreck.libzontreck.chestgui.ChestGUIButton; -import dev.zontreck.libzontreck.chestgui.ChestGUIIdentifier; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.ServerUtilities; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.Items; - -/** - * This is added because of a petty complaint about the effects being annoying. I've added it so someone can opt out if they are truly just that impatient. - */ -public class TPEffectsCommand -{ - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("tpeffects_disable").then(Commands.argument("disabled", BoolArgumentType.bool()).executes(x->tpeffects(x.getSource(), BoolArgumentType.getBool(x, "disabled"))))); - } - - public static int tpeffects(CommandSourceStack source, boolean disabled) - { - ServerPlayer player = source.getPlayer(); - - try { - Profile prof = Profile.get_profile_of(player.getStringUUID()); - prof.NBT.putBoolean("tpeffects", disabled); - - ChatHelpers.broadcastTo(player.getUUID(), ChatHelpers.macro(Messages.TP_EFFECTS_TOGGLED, disabled ? "disabled" : "enabled"), player.server); - return 0; - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/DelWarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/DelWarpCommand.java deleted file mode 100644 index f5a6b56..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/DelWarpCommand.java +++ /dev/null @@ -1,66 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.warps.NoSuchWarpException; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.common.MinecraftForge; - -public class DelWarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("delwarp").then(Commands.argument("nickname", StringArgumentType.string()).executes(c -> setWarp(c.getSource(), StringArgumentType.getString(c, "nickname"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int setWarp(CommandSourceStack source, String string) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "delwarp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - - - ServerPlayer p = (ServerPlayer)source.getEntity(); - - Warp warp; - try { - warp = WarpsProvider.WARPS_INSTANCE.getNamedWarp(string); - } catch (NoSuchWarpException e) { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_NOT_EXIST), p.server); - return 0; - } - if(p.getUUID().equals(warp.owner) || p.hasPermissions(4)) - { - try { - WarpsProvider.WARPS_INSTANCE.delete(WarpsProvider.WARPS_INSTANCE.getNamedWarp(string)); - } catch (NoSuchWarpException e) { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_NOT_EXIST), p.server); - return 0; - } - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_DELETE_SUCCESS), p.server); - - }else { - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_DELETE_FAIL), p.server); - } - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/RTPWarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/RTPWarpCommand.java deleted file mode 100644 index 710c5e7..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/RTPWarpCommand.java +++ /dev/null @@ -1,69 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.SQLException; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.events.WarpCreatedEvent; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector2f; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class RTPWarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("rtpwarp").then(Commands.argument("nickname", StringArgumentType.string()).executes(c -> setWarp(c.getSource(), StringArgumentType.getString(c, "nickname"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int setWarp(CommandSourceStack source, String string) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "setwarp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - ServerPlayer p = (ServerPlayer)source.getEntity(); - - Vec3 position = p.position(); - Vec2 rot = p.getRotationVector(); - - TeleportDestination dest = new TeleportDestination(new Vector3d(position), new Vector2f(rot), p.getLevel()); - Warp warp = new Warp(p.getUUID(), string, true, true, dest, new ItemStack(p.getFeetBlockState().getBlock().asItem())); - WarpCreatedEvent event = new WarpCreatedEvent(warp); - if(MinecraftForge.EVENT_BUS.post(event)) - { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_CREATE_ERROR), p.server); - return 0; - } - WarpsProvider.WARPS_INSTANCE.add(warp); - - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_RTP_CREATED), p.server); - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/SetWarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/SetWarpCommand.java deleted file mode 100644 index 05f200f..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/SetWarpCommand.java +++ /dev/null @@ -1,71 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.SQLException; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.events.WarpCreatedEvent; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector2f; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.Component; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.ItemStack; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class SetWarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("setwarp").then(Commands.argument("nickname", StringArgumentType.string()).executes(c -> setWarp(c.getSource(), StringArgumentType.getString(c, "nickname"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int setWarp(CommandSourceStack source, String string) { - - var exec = new CommandExecutionEvent(source.getPlayer(), "setwarp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return 0; - } - ServerPlayer p = (ServerPlayer)source.getEntity(); - - - Vec3 position = p.position(); - Vec2 rot = p.getRotationVector(); - - TeleportDestination dest = new TeleportDestination(new Vector3d(position), new Vector2f(rot), p.getLevel()); - BlockState bs = p.getLevel().getBlockState(dest.Position.moveDown().asBlockPos()); - - Warp w = new Warp(p.getUUID(), string, false, true, dest, new ItemStack(bs.getBlock().asItem())); - WarpCreatedEvent event = new WarpCreatedEvent(w); - if(MinecraftForge.EVENT_BUS.post(event)){ - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_CREATE_ERROR, event.denyReason), p.server); - return 0; - } - WarpsProvider.WARPS_INSTANCE.add(w); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_CREATED), p.server); - - return 0; - } -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/WarpCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/WarpCommand.java deleted file mode 100644 index 0de8131..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/WarpCommand.java +++ /dev/null @@ -1,110 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import com.mojang.brigadier.CommandDispatcher; -import com.mojang.brigadier.arguments.StringArgumentType; -import com.mojang.brigadier.exceptions.CommandSyntaxException; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.essentials.rtp.RandomPositionFactory; -import dev.zontreck.essentials.warps.NoSuchWarpException; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.Clickable; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; -import net.minecraftforge.common.MinecraftForge; - -public class WarpCommand { - - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("warp").executes(c-> nowarp(c.getSource())).then(Commands.argument("name", StringArgumentType.string()).executes(c->warp(c.getSource(), StringArgumentType.getString(c, "name"))))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int warp(CommandSourceStack source, String string) { - - final ServerPlayer p; - try{ - p=source.getPlayerOrException(); - Warp warp = WarpsProvider.WARPS_INSTANCE.getNamedWarp(string); - - TeleportDestination dest = warp.destination; - - ServerLevel dimL= dest.getActualDimension(); - - - final int type = warp.RTP ? 1 : 0; - final ServerLevel f_dim = dimL; - - if(type == 1) - { - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARP_ATTEMPTING), p.server); - }else{ - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.WARPING), p.server); - } - - Thread tx = new Thread(new Runnable(){ - public void run(){ - - if(type==1){ - try { - var exec = new CommandExecutionEvent(source.getPlayer(), "rtp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return; - } - dest.Position = Vector3d.ZERO; - RandomPositionFactory.beginRTP(p, f_dim); - return; - } catch (Exception e) { - e.printStackTrace(); - return; - } - } - - var exec = new CommandExecutionEvent(source.getPlayer(), "warp"); - if(MinecraftForge.EVENT_BUS.post(exec)) - { - return; - } - - TeleportActioner.ApplyTeleportEffect(p); - TeleportContainer tc = new TeleportContainer(p, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), f_dim); - TeleportActioner.PerformTeleport(tc, false); - } - }); - tx.start(); - }catch(NoSuchWarpException e) - { - ChatHelpers.broadcastTo(source.getEntity().getUUID(), ChatHelpers.macro(Messages.WARP_NOT_EXIST), source.getServer()); - } catch (CommandSyntaxException e) { - e.printStackTrace(); - } - return 0; - } - - private static int nowarp(CommandSourceStack source) { - ServerPlayer p = (ServerPlayer)source.getEntity(); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.applyClickEvent(ChatHelpers.macro(Messages.WARP_NAME_REQUIRED), Clickable.command("/warps")), p.server); - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/commands/warps/WarpsCommand.java b/src/main/java/dev/zontreck/essentials/commands/warps/WarpsCommand.java deleted file mode 100644 index 17695d8..0000000 --- a/src/main/java/dev/zontreck/essentials/commands/warps/WarpsCommand.java +++ /dev/null @@ -1,165 +0,0 @@ -package dev.zontreck.essentials.commands.warps; - -import java.sql.Connection; -import java.sql.PreparedStatement; -import java.sql.ResultSet; -import java.util.Iterator; -import java.util.List; -import java.util.Map; -import java.util.Map.Entry; - -import com.mojang.brigadier.CommandDispatcher; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.rtp.RandomPositionFactory; -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.WarpsProvider; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.chat.Clickable; -import dev.zontreck.libzontreck.chat.HoverTip; -import dev.zontreck.libzontreck.chestgui.ChestGUI; -import dev.zontreck.libzontreck.chestgui.ChestGUIButton; -import dev.zontreck.libzontreck.chestgui.ChestGUIIdentifier; -import dev.zontreck.libzontreck.lore.LoreEntry; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.heads.HeadCache; -import dev.zontreck.libzontreck.util.heads.HeadUtilities; -import dev.zontreck.libzontreck.vectors.Vector2i; -import dev.zontreck.libzontreck.vectors.Vector3d; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.Commands; -import net.minecraft.network.chat.*; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.commands.ExecuteCommand; -import net.minecraft.server.level.ServerPlayer; -import org.spongepowered.asm.mixin.Mutable; - -public class WarpsCommand { - private static final ChestGUIIdentifier WARPS_GUI_ID = new ChestGUIIdentifier("ess_warps"); - public static void register(CommandDispatcher dispatcher) - { - dispatcher.register(Commands.literal("warps").executes(c-> warps(c.getSource()))); - - //dispatcher.register(Commands.literal("sethome").then(Commands.argument("nickname", StringArgumentType.string())).executes(command -> { - //String arg = StringArgumentType.getString(command, "nickname"); - //return setHome(command.getSource(), arg); - //})); - } - - private static int warps(CommandSourceStack source) { - - - ServerPlayer p = (ServerPlayer)source.getEntity(); - - Map warps = WarpsProvider.WARPS_INSTANCE.get(); - - ChatHelpers.broadcastTo(p.getUUID(), ChatHelpers.macro(Messages.COUNT, String.valueOf(warps.size()), "warp"), source.getServer()); - - ChestGUI gui = ChestGUI.builder().withTitle("Warps").withPlayer(p.getUUID()).withGUIId(WARPS_GUI_ID); - - final ChestGUI chestGui = gui; - - int iconX=0; - int iconY=0; - - Iterator> it = warps.entrySet().iterator(); - while(it.hasNext()) - { - // TODO: Implement public and private. Private requires an ACL be implemented. New GUI(?) - Warp warp = it.next().getValue(); - // Pull the owner profile - Profile prof=null; - try { - prof = Profile.get_profile_of(warp.owner.toString()); - } catch (UserProfileNotYetExistsException e) { - e.printStackTrace(); - return 1; - } - String warpName = warp.WarpName; - int warpType; - if(warp.RTP) warpType=1; - else { - warpType = 0; - } - - String appendType = (warpType == 0) ? Messages.WARP_STANDARD : Messages.WARP_RTP; - - - HoverEvent hover = HoverTip.get(ChatHelpers.macroize(appendType, warp.destination.Dimension)); - ClickEvent click = Clickable.command("/warp "+warpName); - - MutableComponent warpMsg = ChatHelpers.macro(ChatColor.GREEN + warpName + ChatColor.resetChat()); - - warpMsg = ChatHelpers.applyHoverEvent(warpMsg, hover); - // Now, display the warp name, along with the warp's owner information - HoverEvent h2 = HoverTip.get( - ChatHelpers.macroize(Messages.WARP_HOVER_FORMAT, - ChatHelpers.macroize(Messages.WARP_OWNER, prof.name_color, prof.nickname), - ChatHelpers.macroize(Messages.WARP_ACCESS_FORMAT, - (warp.isPublic ? ChatHelpers.macroize(Messages.PUBLIC) : ChatHelpers.macroize(Messages.PRIVATE)) - ) - ) - - ); - Component ownerInfo = ChatHelpers.applyHoverEvent(ChatHelpers.macro(Messages.HOVER_WARP_INFO), h2); - - - // Combine the two - warpMsg = warpMsg.copy().append(ownerInfo); - warpMsg = ChatHelpers.applyClickEvent(warpMsg, click); - - - ChestGUIButton button = new ChestGUIButton(HeadUtilities.get(prof.username, warpName), (stack, container, lore)->{ - TeleportDestination dest = warp.destination; - if(warpType == 1) - { - dest.Position = Vector3d.ZERO; - RandomPositionFactory.beginRTP(p, warp.destination.getActualDimension()); - chestGui.close(); - return; - } - try { - TeleportActioner.ApplyTeleportEffect(p); - TeleportContainer tc = new TeleportContainer(p, dest.Position.asMinecraftVector(), dest.Rotation.asMinecraftVector(), dest.getActualDimension()); - TeleportActioner.PerformTeleport(tc, false); - - }catch(Exception e){ - - } - - chestGui.close(); - }, new Vector2i(iconX, iconY)) - .withInfo(new LoreEntry.Builder().text(ChatColor.doColors("!Dark_Purple!Owner: " + prof.name_color + prof.nickname)) - - .build() - ) - .withInfo(new LoreEntry.Builder().text(ChatHelpers.macro(appendType, warp.destination.Dimension).getString()).build()); - - ChatHelpers.broadcastTo(p, warpMsg, p.server); - if(warps.size() > (2*9)) - { - // Say to person - ChatHelpers.broadcastTo(p, warpMsg, p.server); - }else - chestGui.withButton(button); - - iconY++; - if(iconY>=9){ - iconY=0; - iconX++; - } - - } - - if(warps.size() < 27) - chestGui.open(); - - return 0; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/configs/client/sections/Messages.java b/src/main/java/dev/zontreck/essentials/configs/client/sections/Messages.java deleted file mode 100644 index f6f466e..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/client/sections/Messages.java +++ /dev/null @@ -1,6 +0,0 @@ -package dev.zontreck.essentials.configs.client.sections; - -public class Messages -{ - -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/AEServerConfig.java b/src/main/java/dev/zontreck/essentials/configs/server/AEServerConfig.java deleted file mode 100644 index cda39ce..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/AEServerConfig.java +++ /dev/null @@ -1,155 +0,0 @@ -package dev.zontreck.essentials.configs.server; - -import dev.zontreck.ariaslib.util.Lists; -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.configs.server.sections.*; -import dev.zontreck.essentials.util.EssentialsDatastore; -import dev.zontreck.essentials.util.Maps; -import dev.zontreck.libzontreck.chat.ChatColor; -import dev.zontreck.libzontreck.util.SNbtIo; -import net.minecraft.nbt.*; - -import java.nio.file.Path; -import java.util.HashMap; -import java.util.Map; - -public class AEServerConfig -{ - private static AEServerConfig inst; - public Costs costs; - public Limitations limits; - public Map cooldowns; - public Back back; - public Teleportation teleport; - public Messages messages; - public Bottles bottles; - public CreeperHeal creeperHeal; - - - - public static AEServerConfig deserialize(CompoundTag tag) - { - AEServerConfig config = new AEServerConfig(); - try { - AriasEssentials.LOGGER.info("Loading Aria's Essentials configuration for - Server"); - config.costs = Costs.deserialize(tag.getCompound(Costs.TAG_NAME)); - config.limits = Limitations.deserialize(tag.getCompound(Limitations.TAG_NAME)); - config.cooldowns = new HashMap<>(); - ListTag cools = tag.getList(Cooldown.TAG_NAME, ListTag.TAG_COMPOUND); - for(Tag cooldown : cools) - { - Cooldown cd = Cooldown.deserialize((CompoundTag) cooldown); - config.cooldowns.put(cd.Command, cd); - } - config.back = Back.deserialize(tag.getCompound(Back.TAG_NAME)); - config.teleport = Teleportation.deserialize(tag.getCompound(Teleportation.TAG_NAME)); - config.messages = Messages.deserialize(tag.getCompound(Messages.TAG_NAME)); - if(tag.contains(Bottles.TAG_NAME)) - { - config.bottles = Bottles.deserialize(tag.getCompound(Bottles.TAG_NAME)); - } else config.bottles = new Bottles(); - - if(tag.contains(CreeperHeal.TAG_NAME)) - { - config.creeperHeal = CreeperHeal.deserialize(tag.getCompound(CreeperHeal.TAG_NAME)); - } else config.creeperHeal = new CreeperHeal(); - - AriasEssentials.LOGGER.info("Aria's Essentials Server Configuration Loaded"); - } catch(Exception e){ - e.printStackTrace(); - } - - - return config; - } - - public static void loadFromFile() - { - Path serverConfig = EssentialsDatastore.of("server.snbt",false); - if(serverConfig.toFile().exists()) - { - inst = deserialize(SNbtIo.loadSnbt(serverConfig)); - - save(); // incase of updates - }else { - initNewConfig(); - } - - - } - - private static void initNewConfig() - { - inst = new AEServerConfig(); - inst.reset(); // also saves - } - - private void reset() - { - costs = new Costs(); - limits = new Limitations(); - cooldowns = Maps.builder("", new Cooldown()) - .with("rtp", new Cooldown("rtp", 30L)) - .with("warp", new Cooldown("warp", 10L)) - .with("home", new Cooldown("home", 5L)) - .with("tpaccept", new Cooldown("tpaccept", 5L)) - .build(); - back = new Back(); - teleport = new Teleportation(); - teleport.Effects = Lists.of( - "minecraft:darkness", - "minecraft:levitation", - "minecraft:slow_falling", - "minecraft:hunger" - ); - teleport.Blacklist = Lists.of( - "dimdoors:dungeon_pockets", - "dimdoors:limbo", - "dimdoors:personal_pockets", - "dimdoors:public_pockets", - "witherstormmod:bowels" - ); - messages = new Messages(); - bottles = new Bottles(); - creeperHeal = new CreeperHeal(); - - - - save(); - } - - public static void save() - { - Path serverConfig = EssentialsDatastore.of("server.snbt", false); - - CompoundTag tag = inst.serialize(); - SNbtIo.writeSnbt(serverConfig, tag); - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.put(Costs.TAG_NAME, costs.serialize()); - tag.put(Limitations.TAG_NAME, limits.serialize()); - ListTag cools = new ListTag(); - for(Map.Entry entries : cooldowns.entrySet()) - { - cools.add(entries.getValue().serialize()); - } - tag.put(Cooldown.TAG_NAME, cools); - tag.put(Back.TAG_NAME, back.serialize()); - tag.put(Teleportation.TAG_NAME, teleport.serialize()); - tag.put(Messages.TAG_NAME, messages.serialize()); - tag.put(Bottles.TAG_NAME, bottles.serialize()); - tag.put(CreeperHeal.TAG_NAME, creeperHeal.serialize()); - - - - return tag; - } - - public static AEServerConfig getInstance() - { - return inst; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Back.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Back.java deleted file mode 100644 index 4a444fa..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Back.java +++ /dev/null @@ -1,32 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import net.minecraft.nbt.CompoundTag; - -public class Back -{ - public static final String TAG_NAME = "back"; - public static final String TAG_ENABLE = "enabled"; - public static final String TAG_ALLOW_BACK_FOR_TP = "back_for_tp"; - - - public boolean Enabled = true; - public boolean EnabledForTp = false; - - public static Back deserialize(CompoundTag tag) - { - Back back = new Back(); - back.Enabled = tag.getBoolean(TAG_ENABLE); - back.EnabledForTp = tag.getBoolean(TAG_ALLOW_BACK_FOR_TP); - - return back; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putBoolean(TAG_ENABLE, Enabled); - tag.putBoolean(TAG_ALLOW_BACK_FOR_TP, EnabledForTp); - - return tag; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Cooldown.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Cooldown.java deleted file mode 100644 index 88ddb40..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Cooldown.java +++ /dev/null @@ -1,42 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import dev.zontreck.essentials.events.CommandExecutionEvent; -import net.minecraft.nbt.CompoundTag; - -public class Cooldown -{ - public static final String TAG_NAME = "cooldowns"; - public static final String TAG_COMMAND = "command"; - public static final String TAG_SECONDS = "seconds"; - - public Cooldown(){ - - } - - public Cooldown(String name, long sec) - { - Command = name; - Seconds = sec; - } - - public String Command; - public long Seconds; - - public static Cooldown deserialize(CompoundTag tag) - { - Cooldown cd = new Cooldown(); - cd.Command = tag.getString(TAG_COMMAND); - cd.Seconds = tag.getLong(TAG_SECONDS); - - return cd; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putString(TAG_COMMAND, Command); - tag.putLong(TAG_SECONDS, Seconds); - - return tag; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Costs.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Costs.java deleted file mode 100644 index 140b200..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Costs.java +++ /dev/null @@ -1,42 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import net.minecraft.nbt.CompoundTag; - -public class Costs -{ - public static final String TAG_NAME = "costs"; - public static final String TAG_COST_TP_HOME = "tp_home"; - public static final String TAG_COST_WARP = "warp"; - public static final String TAG_COST_MAKE_WARP = "setwarp"; - public static final String TAG_COST_MAKE_HOME = "sethome"; - - - public String CostToTPHome = "1i"; // 1 iron coin - public String CostToWarp = "5i"; // 5 iron coins - public String CostToMakeWarp = "5e"; // 5 emerald coin - public String CostToSetHome = "1d"; // 1 diamond coin - - - public static Costs deserialize(CompoundTag tag) - { - Costs costs = new Costs(); - costs.CostToTPHome = tag.getString(TAG_COST_TP_HOME); - costs.CostToWarp = tag.getString(TAG_COST_WARP); - costs.CostToMakeWarp = tag.getString(TAG_COST_MAKE_WARP); - costs.CostToSetHome = tag.getString(TAG_COST_MAKE_HOME); - - - return costs; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putString(TAG_COST_TP_HOME, CostToTPHome); - tag.putString(TAG_COST_WARP, CostToWarp); - tag.putString(TAG_COST_MAKE_WARP, CostToMakeWarp); - tag.putString(TAG_COST_MAKE_HOME, CostToSetHome); - - return tag; - } -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/CreeperHeal.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/CreeperHeal.java deleted file mode 100644 index 0793f63..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/CreeperHeal.java +++ /dev/null @@ -1,54 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import dev.zontreck.ariaslib.util.Lists; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.util.TagUtils; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.StringTag; -import net.minecraft.nbt.Tag; - -import java.util.ArrayList; -import java.util.List; - -public class CreeperHeal -{ - public static final String TAG_NAME = "creeper_heal"; - public static final String TAG_BLACKLIST = "blacklisted_dims"; - public static final String TAG_DURATION = "duration"; - - - public List blacklistedDimensions = Lists.of("minecraft:the_nether", "minecraft:the_end"); - - public int duration = 40; // Once every 2 seconds - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - ListTag blacklist = new ListTag(); - for(String dimension : blacklistedDimensions) - { - blacklist.add(StringTag.valueOf(dimension)); - } - tag.put(TAG_BLACKLIST, blacklist); - tag.putInt(TAG_DURATION, duration); - - return tag; - } - - public static CreeperHeal deserialize(CompoundTag tag) - { - CreeperHeal heal = new CreeperHeal(); - heal.duration = TagUtils.intOr(tag, TAG_DURATION, 40); - - ListTag lst = tag.getList(TAG_BLACKLIST, StringTag.TAG_STRING); - heal.blacklistedDimensions.clear(); - for(Tag t : lst) - { - heal.blacklistedDimensions.add(t.getAsString()); - } - - return heal; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/configs/server/sections/Limitations.java b/src/main/java/dev/zontreck/essentials/configs/server/sections/Limitations.java deleted file mode 100644 index c3a28e8..0000000 --- a/src/main/java/dev/zontreck/essentials/configs/server/sections/Limitations.java +++ /dev/null @@ -1,34 +0,0 @@ -package dev.zontreck.essentials.configs.server.sections; - -import net.minecraft.nbt.CompoundTag; - -public class Limitations { - public static final String TAG_NAME = "limits"; - - public static final String TAG_MAX_HOMES = "max_homes"; - public static final String TAG_MAX_WARPS = "max_warps"; - - - public int MaxHomes = 27; - public int MaxWarps = 27; - - - public static Limitations deserialize(CompoundTag tag) - { - Limitations limits = new Limitations(); - limits.MaxHomes = tag.getInt(TAG_MAX_HOMES); - limits.MaxWarps = tag.getInt(TAG_MAX_WARPS); - - return limits; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putInt(TAG_MAX_HOMES, MaxHomes); - tag.putInt(TAG_MAX_WARPS, MaxWarps); - - return tag; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/data/ModBlockStatesProvider.java b/src/main/java/dev/zontreck/essentials/data/ModBlockStatesProvider.java deleted file mode 100644 index c02c9fd..0000000 --- a/src/main/java/dev/zontreck/essentials/data/ModBlockStatesProvider.java +++ /dev/null @@ -1,476 +0,0 @@ -package dev.zontreck.essentials.data; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.blocks.ModBlocks; -import net.minecraft.core.Direction; -import net.minecraft.data.DataGenerator; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.level.block.*; -import net.minecraft.world.level.block.state.properties.*; -import net.minecraftforge.client.model.generators.BlockStateProvider; -import net.minecraftforge.client.model.generators.ConfiguredModel; -import net.minecraftforge.client.model.generators.ModelFile; -import net.minecraftforge.client.model.generators.VariantBlockStateBuilder; -import net.minecraftforge.common.data.ExistingFileHelper; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -import java.util.concurrent.atomic.AtomicReference; - -public class ModBlockStatesProvider extends BlockStateProvider { - public ModBlockStatesProvider(DataGenerator output, ExistingFileHelper existingFileHelper) { - super(output, AriasEssentials.MODID, existingFileHelper); - } - - @Override - protected void registerStatesAndModels() { - - - ResourceLocation[] clinkerBlock = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_texture7") - }; - ResourceLocation[] clinkerStainedBlock = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/clinker_brick/clinker_brick_stained_texture7") - }; - - ResourceLocation[] slagBricks = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/slag_brick/slag_brick_texture7") - }; - - ResourceLocation[] rebarConcrete = new ResourceLocation[] { - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_texture7") - }; - - ResourceLocation[] rebarConcreteTile = new ResourceLocation[] { - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture3"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture4"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture5"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture6"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/concrete/rebar_concrete_tile_texture7") - }; - - ResourceLocation[] panzerglass = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture3") - }; - - ResourceLocation[] oldIndustrialWood = new ResourceLocation[]{ - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture0"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture1"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture2"), - new ResourceLocation(AriasEssentials.MODID, "engineersdecor/material/industrial_planks_texture3"), - }; - - variantCubeBlock(ModBlocks.CLINKER_BRICK_BLOCK, clinkerBlock); - customSlabBlock(ModBlocks.CLINKER_BRICK_SLAB, clinkerBlock); - customStairBlock(ModBlocks.CLINKER_BRICK_STAIRS, clinkerBlock); - variantCubeBlock(ModBlocks.CLINKER_BRICK_STAINED_BLOCK, clinkerStainedBlock); - customSlabBlock(ModBlocks.CLINKER_BRICK_STAINED_SLAB, clinkerStainedBlock); - customStairBlock(ModBlocks.CLINKER_BRICK_STAINED_STAIRS, clinkerStainedBlock); - - wallBlock(ModBlocks.CLINKER_BRICK_WALL, new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/clinker_brick/clinker_brick_wall0")); - - variantCubeBlock(ModBlocks.SLAG_BRICK_BLOCK, slagBricks); - customSlabBlock(ModBlocks.SLAG_BRICK_SLAB, slagBricks); - customStairBlock(ModBlocks.SLAG_BRICK_STAIRS, slagBricks); - wallBlock(ModBlocks.SLAG_BRICK_WALL, new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/slag_brick/slag_brick_wall0")); - - variantCubeBlock(ModBlocks.REBAR_CONCRETE_BLOCK, rebarConcrete); - customSlabBlock(ModBlocks.REBAR_CONCRETE_SLAB, rebarConcrete); - customStairBlock(ModBlocks.REBAR_CONCRETE_STAIRS, rebarConcrete); - wallBlock(ModBlocks.REBAR_CONCRETE_WALL, new ResourceLocation(AriasEssentials.MODID, "block/" + rebarConcrete[0].getPath())); - - variantCubeBlock(ModBlocks.REBAR_CONCRETE_TILE_BLOCK, rebarConcreteTile); - customSlabBlock(ModBlocks.REBAR_CONCRETE_TILE_SLAB, rebarConcreteTile); - customStairBlock(ModBlocks.REBAR_CONCRETE_TILE_STAIRS, rebarConcreteTile); - - variantTransparentCubeBlock(ModBlocks.PANZER_GLASS_BLOCK, new ResourceLocation(AriasEssentials.MODID, "engineersdecor/glass/panzerglass_block_texture_inventory"), panzerglass); - customTransparentSlabBlock(ModBlocks.PANZER_GLASS_SLAB, panzerglass); - - variantCubeBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_PLANKS, oldIndustrialWood); - customSlabBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_SLAB, oldIndustrialWood); - customStairBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_STAIRS, oldIndustrialWood); - doorBlock(ModBlocks.OLD_INDUSTRIAL_WOOD_DOOR, new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/door/old_industrial_door_texture_bottom"), new ResourceLocation(AriasEssentials.MODID, "block/engineersdecor/door/old_industrial_door_texture_top")); - - /* - blockWithExistingModel(ModBlocks.STEEL_GRATING, "block/engineersdecor/furniture/steel_floor_grating", false); - blockWithExistingModel(ModBlocks.STEEL_GRATING_TOP, "block/engineersdecor/furniture/steel_floor_grating_top", false); - blockWithExistingModel(ModBlocks.STEEL_TABLE, "block/engineersdecor/furniture/steel_table", false); - blockWithExistingModel(ModBlocks.STEEL_CATWALK, "block/engineersdecor/furniture/steel_catwalk", false); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_TOP, "block/engineersdecor/furniture/steel_catwalk_top", false); - blockWithExistingModel(ModBlocks.STEEL_RAILING, "block/engineersdecor/furniture/steel_railing", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS, "block/engineersdecor/furniture/steel_catwalk_stairs", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS_LR, "block/engineersdecor/furniture/steel_catwalk_stairs_lr", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS_RR, "block/engineersdecor/furniture/steel_catwalk_stairs_rr", true); - blockWithExistingModel(ModBlocks.STEEL_CATWALK_STAIRS_DR, "block/engineersdecor/furniture/steel_catwalk_stairs_dr", true); - - blockWithExistingModel(ModBlocks.STEEL_CATWALK_BLOCK, "block/engineersdecor/steel_catwalk_block", false); - - blockWithExistingModel(ModBlocks.TFLIPFLOP_BLOCK, "block/logicgates/tflipflop", true); - - - */ - } - - private void blockWithExistingModel(RegistryObject blk, String model, boolean rotatable) - { - ResourceLocation modelLoc = new ResourceLocation(AriasEssentials.MODID, model); - ModelFile mFile = models().withExistingParent(name(blk.get()), modelLoc); - - if(!rotatable) - simpleBlock(blk.get(), mFile); - else horizontalBlock(blk.get(), mFile); - - simpleBlockItem(blk.get(), mFile); - } - - private void doorBlock(RegistryObject blk, ResourceLocation textureTop, ResourceLocation textureBottom) - { - doorBlockWithRenderType((DoorBlock) blk.get(), textureBottom, textureTop, new ResourceLocation("translucent")); - - simpleBlockItem(blk.get(), models().doorBottomLeft(name(blk.get()), textureBottom, textureTop)); - } - - private void wallBlock(RegistryObject blk, ResourceLocation texture) - { - wallBlock((WallBlock) blk.get(), texture); - var wallInv = models().wallInventory(name(blk.get()) + "_inventory", texture); - - simpleBlockItem(blk.get(), wallInv); - } - - private void blockWithItem(RegistryObject blockRegistryObject) { - simpleBlock(blockRegistryObject.get(), cubeAll(blockRegistryObject.get())); - simpleBlockItem(blockRegistryObject.get(), cubeAll(blockRegistryObject.get())); - } - - private void blockWithItem(RegistryObject blockRegistryObject, ModelFile model) { - simpleBlock(blockRegistryObject.get(), model); - simpleBlockItem(blockRegistryObject.get(), model); - } - - private void stairBlock(RegistryObject blk, RegistryObject texture) { - stairsBlock((StairBlock) blk.get(), blockTexture(texture.get())); - simpleBlockItem(blk.get(), stairsModel(blk.get(), texture.get())); - } - - private void carpetBlock(RegistryObject blk, RegistryObject texture) { - simpleBlock(blk.get(), carpetModel(blk.get(), texture.get())); - simpleBlockItem(blk.get(), carpetModel(blk.get(), texture.get())); - } - - private String name(Block block) { - return this.key(block).getPath(); - } - - private ResourceLocation key(Block block) { - return ForgeRegistries.BLOCKS.getKey(block); - } - - public ModelFile stairsModel(Block block, Block texture) { - return this.models().stairs(name(block), blockTexture(texture), blockTexture(texture), blockTexture(texture)); - } - - public ModelFile carpetModel(Block block, Block texture) { - return this.models().carpet(name(block), blockTexture(texture)); - } - - public ModelFile slabModel(Block block, Block texture) { - return this.models().slab(name(block), blockTexture(texture), blockTexture(texture), blockTexture(texture)); - } - - private void slabBlock(RegistryObject blk, RegistryObject texture) { - slabBlock((SlabBlock) blk.get(), blockTexture(texture.get()), blockTexture(texture.get())); - simpleBlockItem(blk.get(), slabModel(blk.get(), texture.get())); - } - - private void customSlabBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - - - String appendName = ""; - SlabType type = state.getValue(SlabBlock.TYPE); - - if(type == SlabType.BOTTOM) - appendName = "_bottom"; - else if(type == SlabType.TOP) - appendName = "_top"; - else if(type == SlabType.DOUBLE) - appendName = "_double"; - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile model = null; - if(type == SlabType.TOP) - model = models().slabTop(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss); - else if(type == SlabType.BOTTOM) - model = models().slab(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss); - else if(type == SlabType.DOUBLE) - model = models().cubeAll(name(blockId.get()) + "_model" + i + appendName, rss); - - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(model).build(); - - if(i==0 && model0.get()==null && type == SlabType.BOTTOM) model0.set(model); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - - private void customStairBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - Direction facing = (Direction)state.getValue(StairBlock.FACING); - Half half = (Half)state.getValue(StairBlock.HALF); - StairsShape shape = (StairsShape)state.getValue(StairBlock.SHAPE); - int yRot = (int)facing.getClockWise().toYRot(); - if (shape == StairsShape.INNER_LEFT || shape == StairsShape.OUTER_LEFT) { - yRot += 270; - } - - if (shape != StairsShape.STRAIGHT && half == Half.TOP) { - yRot += 90; - } - - yRot %= 360; - boolean uvlock = yRot != 0 || half == Half.TOP; - - String modelName = (shape == StairsShape.STRAIGHT) ? "" : (shape != StairsShape.INNER_LEFT && shape != StairsShape.INNER_RIGHT) ? "_outer":"_inner"; - boolean straight = (shape == StairsShape.STRAIGHT); - boolean inner = (shape == StairsShape.INNER_LEFT || shape == StairsShape.INNER_RIGHT); - - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile cubeModel = null; - if(straight) - cubeModel = models().stairs( - blockId.getId().getPath() + "_model"+i + modelName, // Model name - rss, rss, rss // Texture location - ); - - if(inner) - cubeModel = models().stairsInner(blockId.getId().getPath()+"_model"+i + modelName, rss, rss, rss); - else if(!inner && !straight) - cubeModel = models().stairsOuter(blockId.getId().getPath() + "_model"+i+modelName, rss, rss, rss); - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(cubeModel).rotationX(half == Half.BOTTOM ? 0 : 180).rotationY(yRot).uvLock(uvlock).build(); - - if(i==0 && model0.get()==null) model0.set(cubeModel); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - private void customTransparentSlabBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - - - String appendName = ""; - SlabType type = state.getValue(SlabBlock.TYPE); - - if(type == SlabType.BOTTOM) - appendName = "_bottom"; - else if(type == SlabType.TOP) - appendName = "_top"; - else if(type == SlabType.DOUBLE) - appendName = "_double"; - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile model = null; - if(type == SlabType.TOP) - model = models().slabTop(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - else if(type == SlabType.BOTTOM) - model = models().slab(name(blockId.get()) + "_model" + i + appendName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - else if(type == SlabType.DOUBLE) - model = models().cubeAll(name(blockId.get()) + "_model" + i + appendName, rss).renderType(new ResourceLocation("translucent")); - - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(model).build(); - - if(i==0 && model0.get()==null && type == SlabType.BOTTOM) model0.set(model); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - - private void customTransparentStairBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - - AtomicReference model0 = new AtomicReference<>(); - - builder.forAllStates((state)->{ - ConfiguredModel[] models = new ConfiguredModel[variations.length]; - Direction facing = (Direction)state.getValue(StairBlock.FACING); - Half half = (Half)state.getValue(StairBlock.HALF); - StairsShape shape = (StairsShape)state.getValue(StairBlock.SHAPE); - int yRot = (int)facing.getClockWise().toYRot(); - if (shape == StairsShape.INNER_LEFT || shape == StairsShape.OUTER_LEFT) { - yRot += 270; - } - - if (shape != StairsShape.STRAIGHT && half == Half.TOP) { - yRot += 90; - } - - yRot %= 360; - boolean uvlock = yRot != 0 || half == Half.TOP; - - String modelName = (shape == StairsShape.STRAIGHT) ? "" : (shape != StairsShape.INNER_LEFT && shape != StairsShape.INNER_RIGHT) ? "_outer":"_inner"; - boolean straight = (shape == StairsShape.STRAIGHT); - boolean inner = (shape == StairsShape.INNER_LEFT || shape == StairsShape.INNER_RIGHT); - - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile cubeModel = null; - if(straight) - cubeModel = models().stairs( - blockId.getId().getPath() + "_model"+i + modelName, // Model name - rss, rss, rss // Texture location - ).renderType(new ResourceLocation("translucent")); - - if(inner) - cubeModel = models().stairsInner(blockId.getId().getPath()+"_model"+i + modelName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - else if(!inner && !straight) - cubeModel = models().stairsOuter(blockId.getId().getPath() + "_model"+i+modelName, rss, rss, rss).renderType(new ResourceLocation("translucent")); - - ConfiguredModel[] cfgModel = ConfiguredModel.builder().modelFile(cubeModel).rotationX(half == Half.BOTTOM ? 0 : 180).rotationY(yRot).uvLock(uvlock).build(); - - if(i==0 && model0.get()==null) model0.set(cubeModel); - - models[i] = cfgModel[0]; - //builder.partialState().addModels(cfgModel); - } - - return models; - }); - - - simpleBlockItem(blockId.get(), model0.get()); - } - - public void variantCubeBlock(RegistryObject blockId, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - ModelFile model0 = null; - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - ModelFile cubeModel = models().cubeAll( - blockId.getId().getPath() + "_model"+i, // Model name - rss // Texture location - ); - var cfgModel = ConfiguredModel.builder().modelFile(cubeModel).build(); - if(i==0)model0 = cubeModel; - builder.partialState().addModels(cfgModel); - } - - - - simpleBlockItem(blockId.get(), model0); - } - - public void variantTransparentCubeBlock(RegistryObject blockId, ResourceLocation inventory, ResourceLocation... variations) { - VariantBlockStateBuilder builder = getVariantBuilder(blockId.get()); - ResourceLocation blockDefault = blockTexture(blockId.get()); - - ModelFile model0 = models().cubeAll(name(blockId.get()) + "_inventory", new ResourceLocation(inventory.getNamespace(), "block/" + inventory.getPath())).renderType(new ResourceLocation("translucent")); - - - for (int i = 0; i < variations.length; i++) { - ResourceLocation texture = variations[i]; - ResourceLocation rss = new ResourceLocation(texture.getNamespace(), "block/" + texture.getPath()); - - ModelFile cubeModel = models().cubeAll( - blockId.getId().getPath() + "_model"+i, // Model name - rss // Texture location - ).renderType(new ResourceLocation("translucent")); - var cfgModel = ConfiguredModel.builder().modelFile(cubeModel).build(); - //if(i==0)model0 = cubeModel; - builder.partialState().addModels(cfgModel); - } - - - - - simpleBlockItem(blockId.get(), model0); - } -} diff --git a/src/main/java/dev/zontreck/essentials/data/ModDatagen.java b/src/main/java/dev/zontreck/essentials/data/ModDatagen.java deleted file mode 100644 index 61648b0..0000000 --- a/src/main/java/dev/zontreck/essentials/data/ModDatagen.java +++ /dev/null @@ -1,25 +0,0 @@ -package dev.zontreck.essentials.data; - - -import dev.zontreck.essentials.AriasEssentials; -import net.minecraft.data.DataGenerator; -import net.minecraftforge.common.data.ExistingFileHelper; -import net.minecraftforge.data.event.GatherDataEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, bus = Mod.EventBusSubscriber.Bus.MOD) -public class ModDatagen -{ - - @SubscribeEvent - public static void gatherData(GatherDataEvent event) - { - DataGenerator gen = event.getGenerator(); - - ExistingFileHelper helper = event.getExistingFileHelper(); - - gen.addProvider(true, new ModBlockStatesProvider(gen, helper)); - gen.addProvider(true, new ModItemModelsProvider(gen,helper)); - } -} diff --git a/src/main/java/dev/zontreck/essentials/data/ModItemModelsProvider.java b/src/main/java/dev/zontreck/essentials/data/ModItemModelsProvider.java deleted file mode 100644 index d2599ea..0000000 --- a/src/main/java/dev/zontreck/essentials/data/ModItemModelsProvider.java +++ /dev/null @@ -1,58 +0,0 @@ -package dev.zontreck.essentials.data; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.items.ModItems; -import net.minecraft.data.DataGenerator; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.world.item.Item; -import net.minecraftforge.client.model.generators.ItemModelBuilder; -import net.minecraftforge.client.model.generators.ItemModelProvider; -import net.minecraftforge.client.model.generators.ModelFile; -import net.minecraftforge.common.data.ExistingFileHelper; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -import java.util.Objects; - -public class ModItemModelsProvider extends ItemModelProvider -{ - public ModItemModelsProvider(DataGenerator output, ExistingFileHelper helper) - { - super(output, AriasEssentials.MODID, helper); - } - - @Override - protected void registerModels() { - - item(ModItems.METAL_BAR); - item(ModItems.TIME_IN_A_BOTTLE); - - /* - Engineer's Decor Items - */ - - - - /* - DEPRECATED ITEMS - */ - - } - - - - private ItemModelBuilder item(RegistryObject ite) { - return this.item((ResourceLocation) Objects.requireNonNull(ForgeRegistries.ITEMS.getKey(ite.get()))); - } - - private ItemModelBuilder item(ResourceLocation item) { - return (ItemModelBuilder)((ItemModelBuilder)((ItemModelBuilder)this.getBuilder(item.toString())).parent(new ModelFile.UncheckedModelFile("item/generated"))).texture("layer0", new ResourceLocation(item.getNamespace(), "item/" + item.getPath())); - } - private ItemModelBuilder deprecated(RegistryObject ite) { - return this.deprecated((ResourceLocation) Objects.requireNonNull(ForgeRegistries.ITEMS.getKey(ite.get()))); - } - - private ItemModelBuilder deprecated(ResourceLocation item) { - return (ItemModelBuilder)((ItemModelBuilder)((ItemModelBuilder)this.getBuilder(item.toString())).parent(new ModelFile.UncheckedModelFile("item/generated"))).texture("layer0", new ResourceLocation(item.getNamespace(), "item/deprecated")); - } -} diff --git a/src/main/java/dev/zontreck/essentials/data/README.md b/src/main/java/dev/zontreck/essentials/data/README.md deleted file mode 100644 index 0e8c7f0..0000000 --- a/src/main/java/dev/zontreck/essentials/data/README.md +++ /dev/null @@ -1,7 +0,0 @@ -Datagen -====== -____________ - -This is the datagen system for Aria's Essentials. - -Please exercise caution when updating this, and test everything. \ No newline at end of file diff --git a/src/main/java/dev/zontreck/essentials/events/MainEventHandlers.java b/src/main/java/dev/zontreck/essentials/events/MainEventHandlers.java deleted file mode 100644 index 9eb2ca7..0000000 --- a/src/main/java/dev/zontreck/essentials/events/MainEventHandlers.java +++ /dev/null @@ -1,34 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueue; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; -import dev.zontreck.libzontreck.memory.world.SavedBlock; -import dev.zontreck.libzontreck.vectors.Vector3i; -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraftforge.event.level.ExplosionEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.util.concurrent.TimeUnit; - -public class MainEventHandlers -{ - - @SubscribeEvent - public static void onExplosionEvent(ExplosionEvent event) - { - for(BlockPos pos : event.getExplosion().getToBlow()) - { - SavedBlock sb = SavedBlock.takeSnapshot(new Vector3i(pos), event.getLevel()); - - BlockRestoreQueue queue = BlockRestoreQueueRegistry.getQueue("creeperheal"); - queue.enqueueBlock(sb); - - event.getLevel().removeBlockEntity(pos); - event.getLevel().setBlock(pos, Blocks.AIR.defaultBlockState(), Block.UPDATE_CLIENTS, 0); - } - } - -} diff --git a/src/main/java/dev/zontreck/essentials/events/RTPEvent.java b/src/main/java/dev/zontreck/essentials/events/RTPEvent.java deleted file mode 100644 index d468d6c..0000000 --- a/src/main/java/dev/zontreck/essentials/events/RTPEvent.java +++ /dev/null @@ -1,21 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.eventbus.api.Cancelable; -import net.minecraftforge.eventbus.api.Event; - -@Cancelable -public class RTPEvent extends Event -{ - public ServerPlayer player; - public WorldPosition position; - - public RTPEvent(ServerPlayer player, WorldPosition position) - { - this.player=player; - this.position=position; - - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/RTPFoundEvent.java b/src/main/java/dev/zontreck/essentials/events/RTPFoundEvent.java deleted file mode 100644 index 25b942c..0000000 --- a/src/main/java/dev/zontreck/essentials/events/RTPFoundEvent.java +++ /dev/null @@ -1,14 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.rtp.RTP; -import net.minecraftforge.eventbus.api.Event; - -public class RTPFoundEvent extends Event -{ - public RTP rtp; - - public RTPFoundEvent(RTP rtp) - { - this.rtp=rtp; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpAccessChanged.java b/src/main/java/dev/zontreck/essentials/events/WarpAccessChanged.java deleted file mode 100644 index 4e20929..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpAccessChanged.java +++ /dev/null @@ -1,30 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.eventbus.api.Cancelable; -import net.minecraftforge.eventbus.api.Event; - - -/** - * Dispatched only when a warp's public status is toggled on or off. - * This event may be cancelled to prevent toggling. This could happen if the person is not the owner of the warp, or due to other permissions issues, such as from claims. - */ -@Cancelable -public class WarpAccessChanged extends Event -{ - /** - * This is the warp the event is triggered for - */ - public Warp warp; - /** - * This is the player initiating the change - */ - public ServerPlayer player; - - public WarpAccessChanged(Warp warp, ServerPlayer initiator) - { - this.warp=warp; - player=initiator; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpAccessControlListUpdatedEvent.java b/src/main/java/dev/zontreck/essentials/events/WarpAccessControlListUpdatedEvent.java deleted file mode 100644 index e977f5e..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpAccessControlListUpdatedEvent.java +++ /dev/null @@ -1,26 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import dev.zontreck.essentials.warps.AccessControlList.ACLEntry; -import dev.zontreck.libzontreck.profiles.Profile; -import net.minecraftforge.eventbus.api.Event; - -/** - * Dispatched when a warp's access control list gets updated. - */ -public class WarpAccessControlListUpdatedEvent extends Event -{ - public Warp warp; - public ACLEntry entry; - - /** - * If false, then the entry was deleted from the warp ACL - */ - public boolean added; - public WarpAccessControlListUpdatedEvent(Warp warp, ACLEntry entry, boolean added) - { - this.warp=warp; - this.entry=entry; - this.added=added; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpCreatedEvent.java b/src/main/java/dev/zontreck/essentials/events/WarpCreatedEvent.java deleted file mode 100644 index d8993f4..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpCreatedEvent.java +++ /dev/null @@ -1,20 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import net.minecraftforge.eventbus.api.Cancelable; -import net.minecraftforge.eventbus.api.Event; - -@Cancelable -public class WarpCreatedEvent extends Event -{ - public Warp warp; - - /** - * Edit this value to specify a reason for cancelling the event to the end user - */ - public String denyReason = "an unknown error"; - public WarpCreatedEvent(Warp w) - { - warp=w; - } -} diff --git a/src/main/java/dev/zontreck/essentials/events/WarpDeletedEvent.java b/src/main/java/dev/zontreck/essentials/events/WarpDeletedEvent.java deleted file mode 100644 index 42f02df..0000000 --- a/src/main/java/dev/zontreck/essentials/events/WarpDeletedEvent.java +++ /dev/null @@ -1,14 +0,0 @@ -package dev.zontreck.essentials.events; - -import dev.zontreck.essentials.warps.Warp; -import net.minecraftforge.eventbus.api.Event; - -public class WarpDeletedEvent extends Event -{ - - public Warp warp; - public WarpDeletedEvent(Warp w) { - warp=w; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/exceptions/NoSuchHomeException.java b/src/main/java/dev/zontreck/essentials/exceptions/NoSuchHomeException.java deleted file mode 100644 index 1a032c5..0000000 --- a/src/main/java/dev/zontreck/essentials/exceptions/NoSuchHomeException.java +++ /dev/null @@ -1,5 +0,0 @@ -package dev.zontreck.essentials.exceptions; - -public class NoSuchHomeException extends Exception{ - -} diff --git a/src/main/java/dev/zontreck/essentials/homes/HomesProvider.java b/src/main/java/dev/zontreck/essentials/homes/HomesProvider.java deleted file mode 100644 index 5ed18a4..0000000 --- a/src/main/java/dev/zontreck/essentials/homes/HomesProvider.java +++ /dev/null @@ -1,48 +0,0 @@ -package dev.zontreck.essentials.homes; - -import java.io.IOException; -import java.nio.file.Path; -import java.util.UUID; - -import dev.zontreck.essentials.util.EssentialsDatastore; -import net.minecraft.nbt.NbtIo; - -public class HomesProvider { - /** - * DO NOT USE. Internal use only. - * @param player - * @return - */ - public static Homes getHomesForPlayer(String player) - { - Path homesFile = EssentialsDatastore.of(player,true).resolve("homes.nbt"); - - Homes homes = new Homes(player); - if(homesFile.toFile().exists()) - { - try { - homes=Homes.deserialize(NbtIo.read(homesFile.toFile())); - homes.playerID=player; - } catch (IOException e) { - e.printStackTrace(); - } - - } - - - return homes; - } - - public static void commitHomes(Homes playerHomes) - { - - Path homesFile = EssentialsDatastore.of(playerHomes.playerID,true).resolve("homes.nbt"); - - try { - NbtIo.write(playerHomes.serialize(), homesFile.toFile()); - } catch (IOException e) { - e.printStackTrace(); - } - } - -} diff --git a/src/main/java/dev/zontreck/essentials/homes/HomesSuggestionProvider.java b/src/main/java/dev/zontreck/essentials/homes/HomesSuggestionProvider.java deleted file mode 100644 index ac823d6..0000000 --- a/src/main/java/dev/zontreck/essentials/homes/HomesSuggestionProvider.java +++ /dev/null @@ -1,18 +0,0 @@ -package dev.zontreck.essentials.homes; - -import com.mojang.brigadier.context.CommandContext; -import com.mojang.brigadier.exceptions.CommandSyntaxException; -import com.mojang.brigadier.suggestion.SuggestionProvider; -import com.mojang.brigadier.suggestion.Suggestions; -import com.mojang.brigadier.suggestion.SuggestionsBuilder; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import net.minecraft.commands.CommandSourceStack; -import net.minecraft.commands.SharedSuggestionProvider; - -import java.util.ArrayList; -import java.util.List; -import java.util.concurrent.CompletableFuture; - -public class HomesSuggestionProvider { -} diff --git a/src/main/java/dev/zontreck/essentials/imc/Events.java b/src/main/java/dev/zontreck/essentials/imc/Events.java deleted file mode 100644 index 938aec2..0000000 --- a/src/main/java/dev/zontreck/essentials/imc/Events.java +++ /dev/null @@ -1,49 +0,0 @@ -package dev.zontreck.essentials.imc; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.antiexplode.CreeperHealQueue; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.util.BackPositionCaches; -import dev.zontreck.libzontreck.config.ServerConfig; -import dev.zontreck.libzontreck.events.BlockRestoreQueueRegistrationEvent; -import dev.zontreck.libzontreck.events.TeleportEvent; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueue; -import dev.zontreck.libzontreck.memory.world.BlockRestoreQueueRegistry; -import dev.zontreck.libzontreck.memory.world.BlockRestoreRunner; -import dev.zontreck.libzontreck.memory.world.SavedBlock; -import dev.zontreck.libzontreck.vectors.Vector3i; -import net.minecraft.core.BlockPos; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.phys.Vec2; -import net.minecraftforge.event.level.ExplosionEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.util.Timer; -import java.util.concurrent.TimeUnit; - -public class Events -{ - @SubscribeEvent - public static void onTeleportRequest(TeleportEvent ev) - { - ev.setCanceled(true); - - TeleportActioner.ApplyTeleportEffect(ev.getPlayer()); - - TeleportContainer container = new TeleportContainer(ev.getPlayer(), ev.getPosition().Position.asMinecraftVector(), Vec2.ZERO, ev.getPosition().getActualDimension()); - - TeleportActioner.PerformTeleport(container, false); - } - - @SubscribeEvent - public static void onRegisterRestoreQueues (BlockRestoreQueueRegistrationEvent event) - { - CreeperHealQueue queue = new CreeperHealQueue(); - event.register(queue); - queue.schedule(AEServerConfig.getInstance().creeperHeal.duration * 50L, TimeUnit.MILLISECONDS); - } - -} diff --git a/src/main/java/dev/zontreck/essentials/items/CreativeModeTabs.java b/src/main/java/dev/zontreck/essentials/items/CreativeModeTabs.java deleted file mode 100644 index 747038f..0000000 --- a/src/main/java/dev/zontreck/essentials/items/CreativeModeTabs.java +++ /dev/null @@ -1,25 +0,0 @@ -package dev.zontreck.essentials.items; - -import dev.zontreck.essentials.AriasEssentials; -import net.minecraft.network.chat.Component; -import net.minecraft.world.item.CreativeModeTab; -import net.minecraft.world.item.Item; -import net.minecraft.world.level.ItemLike; -import net.minecraftforge.api.distmarker.Dist; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.fml.common.Mod; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -import java.util.ArrayList; -import java.util.List; -import java.util.function.Supplier; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, value = Dist.CLIENT) -public class CreativeModeTabs { - public static RegistryObject addToAETab(RegistryObject item) - { - return item; - } -} diff --git a/src/main/java/dev/zontreck/essentials/items/EventHandlers.java b/src/main/java/dev/zontreck/essentials/items/EventHandlers.java deleted file mode 100644 index caa1f21..0000000 --- a/src/main/java/dev/zontreck/essentials/items/EventHandlers.java +++ /dev/null @@ -1,11 +0,0 @@ -package dev.zontreck.essentials.items; - -import dev.zontreck.essentials.AriasEssentials; -import net.minecraftforge.event.TickEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID) -public class EventHandlers -{ -} diff --git a/src/main/java/dev/zontreck/essentials/items/ModItems.java b/src/main/java/dev/zontreck/essentials/items/ModItems.java deleted file mode 100644 index f1ea2f0..0000000 --- a/src/main/java/dev/zontreck/essentials/items/ModItems.java +++ /dev/null @@ -1,22 +0,0 @@ -package dev.zontreck.essentials.items; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.items.implementation.TimeBottle; -import net.minecraft.world.item.Item; -import net.minecraftforge.eventbus.api.IEventBus; -import net.minecraftforge.registries.DeferredRegister; -import net.minecraftforge.registries.ForgeRegistries; -import net.minecraftforge.registries.RegistryObject; - -public class ModItems -{ - public static DeferredRegister REGISTRY = DeferredRegister.create(ForgeRegistries.ITEMS, AriasEssentials.MODID); - - public static void register(IEventBus bus) { - REGISTRY.register(bus); - } - - public static RegistryObject TIME_IN_A_BOTTLE = CreativeModeTabs.addToAETab(REGISTRY.register("tiab", ()->new TimeBottle())); - - public static RegistryObject METAL_BAR = CreativeModeTabs.addToAETab(REGISTRY.register("metal_bar", ()->new Item(new Item.Properties()))); -} diff --git a/src/main/java/dev/zontreck/essentials/networking/ModMessages.java b/src/main/java/dev/zontreck/essentials/networking/ModMessages.java deleted file mode 100644 index 4a0c324..0000000 --- a/src/main/java/dev/zontreck/essentials/networking/ModMessages.java +++ /dev/null @@ -1,53 +0,0 @@ -package dev.zontreck.essentials.networking; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.networking.packets.s2c.S2CUpdateHearts; -import net.minecraft.resources.ResourceLocation; -import net.minecraft.server.level.ServerPlayer; -import net.minecraftforge.network.NetworkDirection; -import net.minecraftforge.network.NetworkRegistry; -import net.minecraftforge.network.PacketDistributor; -import net.minecraftforge.network.simple.SimpleChannel; - -public class ModMessages { - private static SimpleChannel INSTANCE; - - private static int PACKET_ID = 0; - private static int id() - { - return PACKET_ID++; - } - - public static void register() - { - SimpleChannel net = NetworkRegistry.ChannelBuilder.named(new ResourceLocation(AriasEssentials.MODID, "messages")) - .networkProtocolVersion(()-> "1.0") - .clientAcceptedVersions(s->true) - .serverAcceptedVersions(s->true) - .simpleChannel(); - - INSTANCE=net; - - - net.messageBuilder(S2CUpdateHearts.class, id(), NetworkDirection.PLAY_TO_CLIENT) - .decoder(S2CUpdateHearts::new) - .encoder(S2CUpdateHearts::toBytes) - .consumerMainThread(S2CUpdateHearts::handle) - .add(); - - } - - public static void sendToServer(MSG message){ - INSTANCE.sendToServer(message); - } - - public static void sendToPlayer(MSG message, ServerPlayer player) - { - INSTANCE.send(PacketDistributor.PLAYER.with(()->player), message); - } - - public static void sendToAll(MSG message) - { - INSTANCE.send(PacketDistributor.ALL.noArg(), message); - } -} diff --git a/src/main/java/dev/zontreck/essentials/networking/packets/s2c/S2CUpdateHearts.java b/src/main/java/dev/zontreck/essentials/networking/packets/s2c/S2CUpdateHearts.java deleted file mode 100644 index f66da3c..0000000 --- a/src/main/java/dev/zontreck/essentials/networking/packets/s2c/S2CUpdateHearts.java +++ /dev/null @@ -1,44 +0,0 @@ -package dev.zontreck.essentials.networking.packets.s2c; - -import dev.zontreck.essentials.configs.client.AEClientConfig; -import dev.zontreck.libzontreck.networking.packets.IPacket; -import dev.zontreck.libzontreck.util.ServerUtilities; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.network.FriendlyByteBuf; -import net.minecraftforge.network.NetworkDirection; -import net.minecraftforge.network.NetworkEvent; -import net.minecraftforge.network.simple.SimpleChannel; - -import java.util.function.Supplier; - -public class S2CUpdateHearts -{ - public boolean current; - - public S2CUpdateHearts(FriendlyByteBuf buf) - { - current = buf.readBoolean(); - } - - public S2CUpdateHearts(boolean current) - { - this.current=current; - } - - public S2CUpdateHearts(){} - - public void toBytes(FriendlyByteBuf friendlyByteBuf) { - friendlyByteBuf.writeBoolean(current); - } - - public boolean handle(Supplier supplier) { - NetworkEvent.Context ctx=supplier.get(); - - ctx.enqueueWork(()->{ - AEClientConfig.getInstance().EnableHearts = current; - AEClientConfig.save(); - }); - - return true; - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RTP.java b/src/main/java/dev/zontreck/essentials/rtp/RTP.java deleted file mode 100644 index bd39902..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RTP.java +++ /dev/null @@ -1,159 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.ariaslib.util.Lists; -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.Vector3i; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.core.BlockPos; -import net.minecraft.core.Direction; -import net.minecraft.core.Vec3i; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.entity.player.Player; -import net.minecraft.world.level.block.Block; -import net.minecraft.world.level.block.Blocks; -import net.minecraft.world.level.block.state.BlockState; -import net.minecraft.world.level.chunk.ChunkStatus; -import net.minecraft.world.level.levelgen.Heightmap; - -import java.time.Instant; -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; -import java.util.Random; - -public class RTP { - private static final List BLACKLIST = Lists.of(Blocks.LAVA, Blocks.WATER, Blocks.BEDROCK); - private final int SEARCH_DIRECTION; - private final Heightmap.Types heightMapType; - public WorldPosition position; - private final ServerLevel dimension; - private int tries; - - public RTP(ServerLevel level) { - position = new WorldPosition(new Vector3d(0, -60, 0), WorldPosition.getDim(level)); - dimension = position.getActualDimension(); - - if (position.getActualDimension().dimensionType().hasCeiling()) { - heightMapType = Heightmap.Types.MOTION_BLOCKING_NO_LEAVES; - SEARCH_DIRECTION = -1; - } else { - heightMapType = Heightmap.Types.MOTION_BLOCKING_NO_LEAVES; - SEARCH_DIRECTION = 1; - } - } - - public boolean isDimension(ServerLevel level) { - String dim = WorldPosition.getDim(level); - return dim.equals(position.Dimension); - } - - public BlockPos findSafeLandingLocation() { - BlockPos targetPos = position.Position.asBlockPos(); - - // Search upward for a safe landing location - while (!isSafe(targetPos) || !isSafe(targetPos.above())) { - targetPos = targetPos.above(); - } - - return targetPos; - } - - private boolean isSafe(BlockPos blockPos) { - BlockState blockState = dimension.getBlockState(blockPos); - BlockState blockStateAbove = dimension.getBlockState(blockPos.above()); - BlockState blockStateBelow = dimension.getBlockState(blockPos.below()); - - if (blockState.isAir() && blockStateAbove.isAir()) { - if (!blockStateBelow.isAir()) { - return !BLACKLIST.contains(blockStateBelow.getBlock()); - } else { - return false; - } - } else { - return false; - } - } - - public static RTP getRTP(ServerLevel level) { - List slice = slicedByDimension(level); - if (!slice.isEmpty()) { - RTP ret = slice.get(AriasEssentials.random.nextInt(slice.size())); - RTPCaches.Locations.remove(ret); - RandomPositionFactory.beginRTPSearch(ret.position.getActualDimension()); - return ret; - } else { - return null; - } - } - - public void move() { - if (SEARCH_DIRECTION == 1) { - position.Position = position.Position.moveUp(); - } else if (SEARCH_DIRECTION == -1) { - position.Position = position.Position.moveDown(); - } - } - - public void moveOpposite() { - move(); - } - - public void newPosition() { - if (!AriasEssentials.ALIVE || tries >= 5) return; - - AriasEssentials.LOGGER.info("RTP starts looking for a new position"); - - Random rng = new Random(Instant.now().getEpochSecond()); - - Vector3d pos; - BlockPos bpos; - - do { - pos = new Vector3d(rng.nextDouble(0xFFFF), -60, rng.nextDouble(0xFFFF)); - - pos = spiralPositions(pos); - position.Position = pos; - bpos = pos.asBlockPos(); - } while (!isValidPosition(bpos)); - - tries++; - AriasEssentials.LOGGER.info("RTP returns a new position"); - } - - private boolean isValidPosition(BlockPos bpos) { - ChunkStatus status = ChunkStatus.SPAWN; - dimension.getChunk(bpos.getX() >> 4, bpos.getZ() >> 4, status); - - Vector3d pos = new Vector3d(dimension.getHeightmapPos(heightMapType, bpos)); - return dimension.getWorldBorder().isWithinBounds(pos.asBlockPos()); - } - - private Vector3d spiralPositions(Vector3d position) { - Vec3i posi = position.asVec3i(); - BlockPos startBlockPos = new BlockPos(posi.getX(), dimension.getSeaLevel(), posi.getZ()); - - for (BlockPos pos : BlockPos.spiralAround(startBlockPos, 16, Direction.WEST, Direction.NORTH)) { - if (isSafe(pos)) { - // Set the new position - return new Vector3d(pos); - } - } - - return position; - } - - public static List slicedByDimension(ServerLevel lvl) { - List slice = new ArrayList<>(); - - Iterator it = RTPCaches.Locations.iterator(); - while (it.hasNext()) { - RTP nxt = it.next(); - if (nxt.isDimension(lvl)) { - slice.add(nxt); - } - } - - return slice; - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RTPCaches.java b/src/main/java/dev/zontreck/essentials/rtp/RTPCaches.java deleted file mode 100644 index ebcbc97..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RTPCaches.java +++ /dev/null @@ -1,31 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.essentials.events.RTPFoundEvent; -import dev.zontreck.essentials.util.EssentialsDatastore; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.nbt.CompoundTag; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.nio.file.Path; -import java.util.ArrayList; -import java.util.List; - -public class RTPCaches -{ - public static List Locations = new ArrayList<>(); - - - public static final Path BASE = EssentialsDatastore.of("rtp.nbt", false); - - - @SubscribeEvent - public static void onRTPFound(RTPFoundEvent found) - { - - } - - public static void deserialize(CompoundTag tag) - { - - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RTPCachesEventHandlers.java b/src/main/java/dev/zontreck/essentials/rtp/RTPCachesEventHandlers.java deleted file mode 100644 index aeafc4b..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RTPCachesEventHandlers.java +++ /dev/null @@ -1,67 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.events.RTPFoundEvent; -import dev.zontreck.libzontreck.LibZontreck; -import dev.zontreck.libzontreck.util.ChatHelpers; -import net.minecraft.server.MinecraftServer; -import net.minecraft.server.level.ServerLevel; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.event.TickEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.server.ServerLifecycleHooks; - -public class RTPCachesEventHandlers -{ - public int lastTick; - public boolean firstRun=true; - @SubscribeEvent - public void onTick(TickEvent.ServerTickEvent event) - { - if(!AriasEssentials.ALIVE) return; - lastTick++; - MinecraftServer server = ServerLifecycleHooks.getCurrentServer(); - if(lastTick>=400) - { - lastTick=0; - - if(firstRun) - { - try { - - MinecraftForge.EVENT_BUS.unregister(this); - - firstRun=false; - AriasEssentials.LOGGER.info("Aria's Essentials startup is running. Scanning for initial RTP locations"); - for(ServerLevel level : server.getAllLevels()) - { - if(AriasEssentials.DEBUG) - { - AriasEssentials.LOGGER.info("Scanning a level"); - } - if(TeleportActioner.isBlacklistedDimension(level)) - { - continue; - } - - RandomPositionFactory.beginRTPSearch(level); - } - - AriasEssentials.LOGGER.info("Startup done. RTP searching will continue in a separate thread"); - }catch (Exception e) - { - e.printStackTrace(); - } - } - } - } - - @SubscribeEvent - public static void onRTPFound(final RTPFoundEvent event) - { - RTPCaches.Locations.add(event.rtp); - ChatHelpers.broadcast(ChatHelpers.macro(Messages.RTP_CACHED, event.rtp.position.Dimension), event.rtp.position.getActualDimension().getServer()); - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionFactory.java b/src/main/java/dev/zontreck/essentials/rtp/RandomPositionFactory.java deleted file mode 100644 index 57a4132..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionFactory.java +++ /dev/null @@ -1,43 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.essentials.commands.teleport.TeleportActioner; -import dev.zontreck.essentials.commands.teleport.TeleportContainer; -import dev.zontreck.libzontreck.vectors.Vector3d; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.phys.Vec2; -import net.minecraft.world.phys.Vec3; - -import java.time.Instant; - -/** - * The factory system used to start searching for a random teleport position - */ -public class RandomPositionFactory { - - public static RTP beginRTPSearch(ServerLevel level) - { - RTP tmp = new RTP(level); - tmp.position = new WorldPosition(new Vector3d(0,0,0), WorldPosition.getDim(level)); - Thread tx = new Thread(new RandomPositionLocator(tmp)); - tx.setName("RTPTask"); - tx.start(); - - return tmp; - } - - public static void beginRTP(ServerPlayer player, ServerLevel level) - { - RTP tmp = RTP.getRTP(level); - if(tmp == null) - { - throw new RuntimeException("No valid destinations were found"); - } - - TeleportActioner.ApplyTeleportEffect(player); - TeleportContainer cont = new TeleportContainer(player, tmp.position.Position.asMinecraftVector(), player.getRotationVector(), level); - - TeleportActioner.PerformTeleport(cont, false); - } -} diff --git a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionLocator.java b/src/main/java/dev/zontreck/essentials/rtp/RandomPositionLocator.java deleted file mode 100644 index 6d12ef4..0000000 --- a/src/main/java/dev/zontreck/essentials/rtp/RandomPositionLocator.java +++ /dev/null @@ -1,50 +0,0 @@ -package dev.zontreck.essentials.rtp; - -import dev.zontreck.ariaslib.terminal.Task; -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.events.RTPFoundEvent; -import net.minecraft.server.level.ServerLevel; -import net.minecraft.world.level.ChunkPos; -import net.minecraft.world.level.chunk.ChunkAccess; -import net.minecraftforge.common.MinecraftForge; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; - -/** - * This class serves as the Random Position Locate system, aiming to be non-thread blocking for improved server performance. - * To utilize, initialize an RTP from the RandomPositionFactory and execute from there. - */ -public class RandomPositionLocator extends Task { - private static final Logger log = LogManager.getLogger("RPL-"+Thread.currentThread().getName()); - private final RTP contain; - - /** - * Constructs a RandomPositionLocator with the specified RTP instance. - * - * @param rtp The RTP instance to use. - */ - public RandomPositionLocator(RTP rtp) { - super("RPL", true); - contain = rtp; - } - - @Override - public void run() { - if (!AriasEssentials.ALIVE) return; - - if (AriasEssentials.DEBUG) { - log.debug("RTP Search thread"); - } - - contain.newPosition(); - - if(AriasEssentials.DEBUG) - { - log.debug("Dispatching RTPFoundEvent - " + contain.position.Dimension); - } - - contain.position.getActualDimension().getServer().execute(()->{ - MinecraftForge.EVENT_BUS.post(new RTPFoundEvent(contain)); - }); - } -} diff --git a/src/main/java/dev/zontreck/essentials/util/BackPositionCaches.java b/src/main/java/dev/zontreck/essentials/util/BackPositionCaches.java deleted file mode 100644 index 3b638f7..0000000 --- a/src/main/java/dev/zontreck/essentials/util/BackPositionCaches.java +++ /dev/null @@ -1,65 +0,0 @@ -package dev.zontreck.essentials.util; - - -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.vectors.WorldPosition; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.Tag; - -import java.util.HashMap; -import java.util.List; -import java.util.Map; -import java.util.UUID; - -public class BackPositionCaches -{ - public static void Update(UUID ID, WorldPosition pos) - { - try { - Profile prof = Profile.get_profile_of(ID.toString()); - if(prof.NBT.contains("back_positions")) - { - - ListTag backCaches = prof.NBT.getList("back_positions", CompoundTag.TAG_COMPOUND); - backCaches.add(pos.serialize()); - - while(backCaches.size()>10) - { - backCaches.remove(backCaches.size()-1); - } - - prof.commit(); - } else { - ListTag backCaches = new ListTag(); - backCaches.add(pos.serialize()); - - prof.NBT.put("back_positions", backCaches); - - prof.commit(); - } - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - } - - public static WorldPosition Pop(UUID ID) throws Exception { - Profile prof = Profile.get_profile_of(ID.toString()); - if(prof.NBT.contains("back_positions")) - { - ListTag lst = prof.NBT.getList("back_positions", Tag.TAG_COMPOUND); - if(lst.size()>0) - { - WorldPosition pos = new WorldPosition(lst.getCompound(0), false); - lst.remove(0); - - prof.commit(); - return pos; - }else { - throw new Exception("No back cache"); - } - } else throw new Exception("No back cache"); - } - -} diff --git a/src/main/java/dev/zontreck/essentials/util/CommandCooldowns.java b/src/main/java/dev/zontreck/essentials/util/CommandCooldowns.java deleted file mode 100644 index 3fc92f4..0000000 --- a/src/main/java/dev/zontreck/essentials/util/CommandCooldowns.java +++ /dev/null @@ -1,76 +0,0 @@ -package dev.zontreck.essentials.util; - -import dev.zontreck.essentials.Messages; -import dev.zontreck.essentials.configs.server.AEServerConfig; -import dev.zontreck.essentials.events.CommandExecutionEvent; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ChatHelpers; -import dev.zontreck.libzontreck.util.ServerUtilities; -import net.minecraft.nbt.CompoundTag; -import net.minecraftforge.eventbus.api.SubscribeEvent; - -import java.time.Instant; -import java.util.UUID; - -public class CommandCooldowns -{ - @SubscribeEvent - public void onCommand(CommandExecutionEvent ev) - { - if(isOnCooldown(ev.playerID, ev.command)) - { - ev.setCanceled(true); - ChatHelpers.broadcastTo(ev.playerID, ChatHelpers.macro(Messages.COOLDOWN_IN_PROGRESS, ev.command, getCooldownSeconds(ev.playerID, ev.command) + " seconds"), ServerUtilities.getPlayerByID(ev.playerID.toString()).server); - } - } - - public long getCooldownSeconds(UUID ID, String command) - { - try{ - Profile prof = Profile.get_profile_of(ID.toString()); - CompoundTag commands = prof.NBT.getCompound("commands"); - return Instant.now().getEpochSecond() - (commands.getLong(command) + getConfigCooldown(command)); - }catch(Exception e) - { - e.printStackTrace(); - return 0; - } - } - - public long getConfigCooldown(String command) - { - if(AEServerConfig.getInstance().cooldowns.containsKey(command)) - { - return AEServerConfig.getInstance().cooldowns.get(command).Seconds; - }else return 0; - } - - public boolean isOnCooldown(UUID ID, String command) - { - try { - Profile prof = Profile.get_profile_of(ID.toString()); - CompoundTag commands = prof.NBT.getCompound("commands"); - if(commands.contains(command)) - { - long cfg = getConfigCooldown(command); - if(Instant.now().getEpochSecond() > (commands.getLong(command) + cfg)) - { - commands.putLong(command, Instant.now().getEpochSecond()); - prof.commit(); - return false; - }else return true; - }else { - commands = new CompoundTag(); - prof.NBT.put("commands", commands); - commands.putLong(command, Instant.now().getEpochSecond()); - prof.commit(); - - return false; - } - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - - } -} diff --git a/src/main/java/dev/zontreck/essentials/util/ForgeEventsHandler.java b/src/main/java/dev/zontreck/essentials/util/ForgeEventsHandler.java deleted file mode 100644 index 2755f2f..0000000 --- a/src/main/java/dev/zontreck/essentials/util/ForgeEventsHandler.java +++ /dev/null @@ -1,33 +0,0 @@ -package dev.zontreck.essentials.util; - -import java.util.UUID; - -import dev.zontreck.essentials.AriasEssentials; -import dev.zontreck.essentials.homes.HomesProvider; -import dev.zontreck.libzontreck.events.ProfileLoadedEvent; -import dev.zontreck.libzontreck.events.ProfileUnloadedEvent; -import net.minecraftforge.eventbus.api.SubscribeEvent; -import net.minecraftforge.fml.common.Mod; - -@Mod.EventBusSubscriber(modid = AriasEssentials.MODID, bus = Mod.EventBusSubscriber.Bus.FORGE) -public class ForgeEventsHandler { - - @SubscribeEvent - public void onProfileLoaded(final ProfileLoadedEvent ev) - { - //Path playerStore = EssentialsDatastore.of(ev.profile.user_id,true); - - AriasEssentials.player_homes.put(UUID.fromString(ev.profile.user_id), HomesProvider.getHomesForPlayer(ev.profile.user_id)); - AriasEssentials.LOGGER.info("Homes loaded"); - - - - } - - @SubscribeEvent - public void onProfileUnloaded(final ProfileUnloadedEvent ev) - { - AriasEssentials.player_homes.remove(UUID.fromString(ev.user_id)); - AriasEssentials.LOGGER.info("Homes unloaded"); - } -} diff --git a/src/main/java/dev/zontreck/essentials/warps/AccessControlList.java b/src/main/java/dev/zontreck/essentials/warps/AccessControlList.java deleted file mode 100644 index 73cb327..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/AccessControlList.java +++ /dev/null @@ -1,156 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.util.ArrayList; -import java.util.Iterator; -import java.util.List; -import java.util.UUID; - -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.nbt.Tag; -import net.minecraft.server.level.ServerPlayer; - -public class AccessControlList { - - /** - * Warp ACLs do not need privilege level. It is simply a question of yes or no to if someone has access to the warp. - */ - public class ACLEntry - { - public String name; - public UUID id; - - public ACLEntry(String name, UUID id) - { - this.name=name; - this.id=id; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putString("name", name); - tag.put("id", NbtUtils.createUUID(id)); - - return tag; - } - - public ACLEntry(CompoundTag tag) - { - name=tag.getString("name"); - id=NbtUtils.loadUUID(tag.get("id")); - } - } - - public List entries = new ArrayList<>(); - - public AccessControlList() - { - - } - - public List getNames() - { - List names = new ArrayList<>(); - for (ACLEntry entry : entries) { - names.add(entry.name); - } - - return names; - } - - public List getIDs() - { - List ids = new ArrayList<>(); - for (ACLEntry entry : entries) { - ids.add(entry.id); - } - - return ids; - } - - /** - * Adds a ACL Entry for a name and ID - * @param name - * @param id - * @return null if the entry was already in the ACL - * @return Entry if the entry was successfully added to the ACL - */ - public ACLEntry addEntry(String name, UUID id) - { - ACLEntry entry = new ACLEntry(name, id); - if(getIDs().contains(id)) return null; - entries.add(entry); - - return entry; - } - - /** - * Removes a ACLEntry by UUID - * @param ID - * @return null if no such entry - * @return Entry that was removed from the list - */ - public ACLEntry removeByID(UUID ID) - { - Iterator entr = entries.iterator(); - while(entr.hasNext()) - { - ACLEntry entry = entr.next(); - if(entry.id==ID) - { - entr.remove(); - return entry; - } - } - - return null; - } - - /** - * Saves the current instance as a NBT Tag - * @return - */ - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - ListTag lst = new ListTag(); - for (ACLEntry aclEntry : entries) { - lst.add(aclEntry.serialize()); - } - tag.put("entries", lst); - - return tag; - } - - - /** - * Reads a NBT Tag back into an AccessControlList - * @param tag - * @return - */ - public static AccessControlList deserialize(CompoundTag tag) - { - AccessControlList acl = new AccessControlList(); - ListTag lst = tag.getList("entries", Tag.TAG_COMPOUND); - for (Tag tag2 : lst) { - CompoundTag entry = (CompoundTag)tag2; - ACLEntry entryItem = acl.deserializeEntry(entry); - acl.entries.add(entryItem); - } - - return acl; - } - - /** - * Deserializes an entry from the subclass - * @see ACLEntry - * @param tag - * @return - */ - private ACLEntry deserializeEntry(CompoundTag tag) - { - return new ACLEntry(tag); - } -} diff --git a/src/main/java/dev/zontreck/essentials/warps/NoSuchWarpException.java b/src/main/java/dev/zontreck/essentials/warps/NoSuchWarpException.java deleted file mode 100644 index 443685f..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/NoSuchWarpException.java +++ /dev/null @@ -1,6 +0,0 @@ -package dev.zontreck.essentials.warps; - -public class NoSuchWarpException extends Exception -{ - -} diff --git a/src/main/java/dev/zontreck/essentials/warps/Warp.java b/src/main/java/dev/zontreck/essentials/warps/Warp.java deleted file mode 100644 index 57fa866..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/Warp.java +++ /dev/null @@ -1,159 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.util.ArrayList; -import java.util.List; -import java.util.UUID; - -import dev.zontreck.essentials.commands.teleport.TeleportDestination; -import dev.zontreck.essentials.events.WarpAccessControlListUpdatedEvent; -import dev.zontreck.essentials.warps.AccessControlList.ACLEntry; -import dev.zontreck.libzontreck.exceptions.InvalidDeserialization; -import dev.zontreck.libzontreck.profiles.Profile; -import dev.zontreck.libzontreck.profiles.UserProfileNotYetExistsException; -import dev.zontreck.libzontreck.util.ServerUtilities; -import dev.zontreck.libzontreck.util.heads.HeadUtilities; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.IntArrayTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.NbtUtils; -import net.minecraft.nbt.Tag; -import net.minecraft.server.level.ServerPlayer; -import net.minecraft.world.item.Item; -import net.minecraft.world.item.ItemStack; -import net.minecraftforge.common.MinecraftForge; - -public class Warp { - public UUID owner; - public String WarpName; - public boolean RTP; - public boolean isPublic; - public TeleportDestination destination; - private AccessControlList ACL; - - public ItemStack warpIcon; - - public Warp(UUID owner, String name, boolean rtp, boolean publicWarp, TeleportDestination destination, ItemStack warpIcon) - { - this.owner=owner; - WarpName=name; - RTP=rtp; - isPublic=publicWarp; - this.destination=destination; - this.ACL = new AccessControlList(); - - if(warpIcon==null) - { - try { - Profile prof = Profile.get_profile_of(owner.toString()); - this.warpIcon = HeadUtilities.get(prof.username, name); - - } catch (UserProfileNotYetExistsException e) { - throw new RuntimeException(e); - } - - }else this.warpIcon=warpIcon; - } - - public static Warp deserialize(CompoundTag tag) throws InvalidDeserialization - { - Warp warp = new Warp(tag.getUUID("owner"), tag.getString("name"), tag.getBoolean("rtp"), tag.getBoolean("public"), new TeleportDestination(tag.getCompound("destination")), ItemStack.of(tag.getCompound("icon"))); - - if(!warp.isPublic) - { - warp.ACL = AccessControlList.deserialize(tag.getCompound("acl")); - } - - return warp; - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - tag.putUUID("owner", owner); - tag.putString("name", WarpName); - tag.putBoolean("rtp", RTP); - tag.putBoolean("public", isPublic); - tag.put("destination", destination.serialize()); - tag.put("icon", warpIcon.serializeNBT()); - if(!isPublic) - { - tag.put("acl", ACL.serialize()); - } - - return tag; - } - - /** - * Checks if a player has access to a warp - * @param player - * @return - */ - public boolean hasAccess(ServerPlayer player) - { - return hasAccess(player.getUUID()); - } - - /** - * Checks if an ID has access to the warp - * @param ID - * @return - */ - public boolean hasAccess(UUID ID) - { - if(isPublic)return true; - return ACL.getIDs().contains(ID); - } - - /** - * Alias for Warp#giveAccess(UUID) - * @param player - */ - protected void giveAccess(ServerPlayer player) - { - giveAccess(player.getName().getString(), player.getUUID()); - } - - /** - * If the warp is not public, it gives an ID access to the warp - * @param ID - */ - protected void giveAccess(String name, UUID ID) - { - if(!isPublic) - { - ACLEntry entry = ACL.addEntry(name, ID); - MinecraftForge.EVENT_BUS.post(new WarpAccessControlListUpdatedEvent(this, entry, true)); - }else { - } - } - - /** - * Takes away access to the warp - * @param player - */ - protected void removeAccess(ServerPlayer player) - { - removeAccess(player.getUUID()); - } - /** - * Takes away access to the warp - * @param id - */ - protected void removeAccess(UUID id) - { - if(ACL.getIDs().contains(id)) - { - ACLEntry entry = ACL.removeByID(id); - MinecraftForge.EVENT_BUS.post(new WarpAccessControlListUpdatedEvent(this, entry, false)); - } - } - - /** - * Returns a copy of the ACL List as it was when the request was made. - * @return - */ - protected List getWarpACL() - { - return ACL.getIDs(); - } -} diff --git a/src/main/java/dev/zontreck/essentials/warps/Warps.java b/src/main/java/dev/zontreck/essentials/warps/Warps.java deleted file mode 100644 index ba985ab..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/Warps.java +++ /dev/null @@ -1,95 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.util.ArrayList; -import java.util.HashMap; -import java.util.Iterator; -import java.util.List; -import java.util.Map; - -import dev.zontreck.essentials.events.WarpCreatedEvent; -import dev.zontreck.essentials.events.WarpDeletedEvent; -import dev.zontreck.libzontreck.exceptions.InvalidDeserialization; -import net.minecraft.nbt.CompoundTag; -import net.minecraft.nbt.ListTag; -import net.minecraft.nbt.Tag; -import net.minecraftforge.common.MinecraftForge; -import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext; - -public class Warps -{ - private final Map warps = new HashMap<>(); - - private Warps(){ - - } - - public Warp getNamedWarp(String name) throws NoSuchWarpException - { - if(warps.containsKey(name)) - return warps.get(name); - else throw new NoSuchWarpException(); - } - - public void add(Warp w) - { - - WarpCreatedEvent e = new WarpCreatedEvent(w); - if(!MinecraftForge.EVENT_BUS.post(e)) - { - - warps.put(w.WarpName,w); - WarpsProvider.updateFile(); - } - } - - public Map get() - { - return new HashMap(warps); - } - - public void delete(Warp w) - { - warps.remove(w.WarpName); - WarpsProvider.updateFile(); - - WarpDeletedEvent e = new WarpDeletedEvent(w); - MinecraftForge.EVENT_BUS.post(e); - } - - public static Warps getNew() - { - return new Warps(); - } - - public CompoundTag serialize() - { - CompoundTag tag = new CompoundTag(); - ListTag lst = new ListTag(); - for(Map.Entry entry : warps.entrySet()) - { - lst.add(entry.getValue().serialize()); - } - - tag.put("warps", lst); - return tag; - } - - public static Warps deserialize(CompoundTag tag) - { - Warps w = new Warps(); - ListTag lst = tag.getList("warps", Tag.TAG_COMPOUND); - for (Tag tag2 : lst) { - Warp warp; - try { - warp = Warp.deserialize((CompoundTag)tag2); - w.warps.put(warp.WarpName, warp); - } catch (InvalidDeserialization e) { - e.printStackTrace(); - } - } - - - return w; - } - -} diff --git a/src/main/java/dev/zontreck/essentials/warps/WarpsProvider.java b/src/main/java/dev/zontreck/essentials/warps/WarpsProvider.java deleted file mode 100644 index cc478d6..0000000 --- a/src/main/java/dev/zontreck/essentials/warps/WarpsProvider.java +++ /dev/null @@ -1,49 +0,0 @@ -package dev.zontreck.essentials.warps; - -import java.io.IOException; -import java.nio.file.Files; -import java.nio.file.Path; - -import dev.zontreck.essentials.util.EssentialsDatastore; -import net.minecraft.nbt.NbtIo; - -public class WarpsProvider extends EssentialsDatastore -{ - public static final Path BASE = of("warps.nbt", false); - - public static final Warps WARPS_INSTANCE; - static{ - WARPS_INSTANCE = getOrCreate(); - } - - /** - * Creates a new warps instance, or returns a fully deserialized instance - * @return - */ - private static Warps getOrCreate() - { - Warps instance = null; - if(BASE.toFile().exists()) - { - try{ - instance= Warps.deserialize(NbtIo.read(BASE.toFile())); - - }catch(Exception e){ - instance=Warps.getNew(); - } - }else { - instance=Warps.getNew(); - } - - return instance; - } - - public static void updateFile() - { - try { - NbtIo.write(WARPS_INSTANCE.serialize(), BASE.toFile()); - } catch (IOException e) { - e.printStackTrace(); - } - } -} diff --git a/src/main/resources/META-INF/accesstransformer.cfg b/src/main/resources/META-INF/accesstransformer.cfg deleted file mode 100644 index e69de29..0000000 diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index e16e069..86871bc 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -1,71 +1,38 @@ -# This is an example mods.toml file. It contains the data relating to the loading mods. -# There are several mandatory fields (#mandatory), and many more that are optional (#optional). -# The overall format is standard TOML format, v0.5.0. -# Note that there are a couple of TOML lists in this file. -# Find more information on toml format here: https://github.com/toml-lang/toml -# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml -modLoader="javafml" #mandatory -# A version range to match for said mod loader - for regular FML @Mod it will be the forge version -loaderVersion="${loader_version_range}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. -# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. -# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. -license="${mod_license}" -# A URL to refer people to when problems occur with this mod -#issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional -# A list of mods - how many allowed here is determined by the individual mod loader -[[mods]] #mandatory -# The modid of the mod -modId="${mod_id}" #mandatory -# The version number of the mod -version="${mod_version}" #mandatory -# A display name for the mod -displayName="${mod_name}" #mandatory -# A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/ -#updateJSONURL="https://change.me.example.invalid/updates.json" #optional -# A URL for the "homepage" for this mod, displayed in the mod UI -#displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional -# A file name (in the root of the mod JAR) containing a logo for display -#logoFile="examplemod.png" #optional -# A text field displayed in the mod UI -#credits="" #optional -# A text field displayed in the mod UI -authors="${mod_authors}" #optional -# Display Test controls the display for your mod in the server connection screen -# MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. -# IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. -# IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. -# NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. -# IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. -#displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional) +modLoader = "javafml" +loaderVersion = "[43,)" +#issueTrackerURL = "" +license = "GPLv3" -# The description text for the mod (multi line!) (#mandatory) -description='''${mod_description}''' -# A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. -[[dependencies.${mod_id}]] #optional -# the modid of the dependency -modId="forge" #mandatory -# Does this dependency have to exist - if not, ordering below must be specified -mandatory=true #mandatory -# The version range of the dependency -versionRange="${forge_version_range}" #mandatory -# An ordering relationship for the dependency - BEFORE or AFTER required if the dependency is not mandatory -# BEFORE - This mod is loaded BEFORE the dependency -# AFTER - This mod is loaded AFTER the dependency -ordering="NONE" -# Side this dependency is applied on - BOTH, CLIENT, or SERVER -side="BOTH" -# Here's another dependency -[[dependencies.${libzontreck_id}]] -modId="${libzontreck_id}" -mandatory=true -versionRange="${libzontreck_range}" -ordering="NONE" -side="BOTH" +[[mods]] +modId = "ariasessentials" +version = "${version}" +displayName = "Aria's Essentials" +authors = "Me!" +description = ''' +A mod including features and functions to enhance the game. +''' +#logoFile = "" -[[dependencies.${mod_id}]] -modId="minecraft" -mandatory=true -# This version range declares a minimum of the current minecraft version up to but not including the next major version -versionRange="${minecraft_version_range}" -ordering="NONE" -side="BOTH" +[[mods]] +modId = "libzontreck" +version = "${version}" +displayName = "Aria's Library" +authors = "Me!" +description = ''' +A mod including features and functions to enhance the game. +''' +#logoFile = "" + +[[dependencies.ariasessentials]] +modId = "forge" +mandatory = true +versionRange = "[43,)" +ordering = "NONE" +side = "BOTH" + +[[dependencies.ariasessentials]] +modId = "minecraft" +mandatory = true +versionRange = "[1.19.2,1.20)" +ordering = "NONE" +side = "BOTH" diff --git a/src/main/resources/ariasessentials.mixins.json b/src/main/resources/ariasessentials.mixins.json new file mode 100644 index 0000000..a0b11f2 --- /dev/null +++ b/src/main/resources/ariasessentials.mixins.json @@ -0,0 +1,13 @@ +{ + "required": true, + "package": "com.zontreck.mixin", + "compatibilityLevel": "JAVA_17", + "minVersion": "0.8", + "client": [ + ], + "mixins": [ + ], + "injectors": { + "defaultRequire": 1 + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/blood_red.json b/src/main/resources/assets/ariasessentials/blockstates/blood_red.json new file mode 100644 index 0000000..60f3882 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blood_red.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blood_red" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_light.json new file mode 100644 index 0000000..fb8e20c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blue_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile.json new file mode 100644 index 0000000..640935c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/blue_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json new file mode 100644 index 0000000..00562c3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/blue_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/blue_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/blue_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json new file mode 100644 index 0000000..35b901f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json new file mode 100644 index 0000000..eb89578 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/blue_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clear_glass_block.json b/src/main/resources/assets/ariasessentials/blockstates/clear_glass_block.json new file mode 100644 index 0000000..c2c5c03 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clear_glass_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deprecated" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_block.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_block.json new file mode 100644 index 0000000..abf1a37 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/clinker_brick_block_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_recessed.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_recessed.json deleted file mode 100644 index 51a849f..0000000 --- a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_recessed.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "variants": { - "facing=north": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model" - }, - "facing=south": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model", - "y": 180 - }, - "facing=west": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model", - "y": 270 - }, - "facing=east": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_sastor_corner_block.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_sastor_corner_block.json deleted file mode 100644 index 8cf0fe0..0000000 --- a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_sastor_corner_block.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "variants": { - "facing=north": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model" - }, - "facing=south": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model", - "y": 180 - }, - "facing=west": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model", - "y": 270 - }, - "facing=east": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model", - "y": 90 - }, - "facing=up": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_up_model" - }, - "facing=down": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_down_model" - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json new file mode 100644 index 0000000..bab23ad --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json new file mode 100644 index 0000000..2602152 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/clinker_brick_stained_block_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json new file mode 100644 index 0000000..d10f82d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_double" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model0_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model1_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model2_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model3_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model4_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model5_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model6_top" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json new file mode 100644 index 0000000..219383c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stained_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stained_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json new file mode 100644 index 0000000..13e551f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/clinker_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/clinker_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_vertically_slit.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_vertically_slit.json deleted file mode 100644 index 1413761..0000000 --- a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_vertically_slit.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "variants": { - "facing=north": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model" - }, - "facing=south": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model", - "y": 180 - }, - "facing=west": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model", - "y": 270 - }, - "facing=east": { - "model": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model", - "y": 90 - } - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json new file mode 100644 index 0000000..a4976c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/clinker_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/clinker_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/cobalt_block.json b/src/main/resources/assets/ariasessentials/blockstates/cobalt_block.json new file mode 100644 index 0000000..5425928 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cobalt_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cobalt_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/cobalt_ore.json b/src/main/resources/assets/ariasessentials/blockstates/cobalt_ore.json new file mode 100644 index 0000000..15e902e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cobalt_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cobalt_ore" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json b/src/main/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json new file mode 100644 index 0000000..dcd27fd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/compressed_obsidian_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/compressed_obsidian_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/compression_chamber.json b/src/main/resources/assets/ariasessentials/blockstates/compression_chamber.json new file mode 100644 index 0000000..28d55e9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/compression_chamber.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=north": { + "model": "ariasessentials:block/compression_chamber" + }, + "facing=east": { + "model": "ariasessentials:block/compression_chamber", + "y": 90 + }, + "facing=south": { + "model": "ariasessentials:block/compression_chamber", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/compression_chamber", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan.json b/src/main/resources/assets/ariasessentials/blockstates/cyan.json new file mode 100644 index 0000000..1140857 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_stairs.json new file mode 100644 index 0000000..92a3b8d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/cyan_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/cyan_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/cyan_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_tile.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile.json new file mode 100644 index 0000000..9392d78 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_tile" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_br.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_br.json new file mode 100644 index 0000000..4ff391d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_br.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/cyan_tile_br" + }, + "facing=south": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/cyan_tile_br", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json new file mode 100644 index 0000000..18664ad --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_tile_to_wall" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json new file mode 100644 index 0000000..9db9859 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_wall_variant_1" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json new file mode 100644 index 0000000..c19d42c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/cyan_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/cyan_wall_variant_2" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_light.json new file mode 100644 index 0000000..1c52dc6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile.json new file mode 100644 index 0000000..a275c44 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json new file mode 100644 index 0000000..3b81bd2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dark_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dark_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dark_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json new file mode 100644 index 0000000..b1d4e4d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dark_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dark_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_bed.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_bed.json new file mode 100644 index 0000000..6577c90 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_carpet.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_carpet.json new file mode 100644 index 0000000..7b947a7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_carpet.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_carpet" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json new file mode 100644 index 0000000..076cb31 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_shulker_box.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_shulker_box" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dark_red_wool.json b/src/main/resources/assets/ariasessentials/blockstates/dark_red_wool.json new file mode 100644 index 0000000..412496d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dark_red_wool.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dark_red_wool" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..aa984f4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/deepslate_eternium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deepslate_eternium_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..e09d2fd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/deepslate_ilusium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/deprecated" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_light.json new file mode 100644 index 0000000..a899860 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_blue_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json new file mode 100644 index 0000000..777f905 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_blue_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..6c39f66 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_blue_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_blue_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_blue_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..ed6b1d2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_blue_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..4412e55 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_blue_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_blue_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_light.json new file mode 100644 index 0000000..e3a46d7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_green_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json new file mode 100644 index 0000000..0a4862e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_green_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..475582f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_green_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_green_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_green_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..7afe9fc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..23182e9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_green_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_light.json new file mode 100644 index 0000000..39fb67b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json new file mode 100644 index 0000000..04a7908 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json new file mode 100644 index 0000000..2f1b5b6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..9c344d4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json new file mode 100644 index 0000000..e769d48 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_light.json new file mode 100644 index 0000000..a3621c2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_red_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json new file mode 100644 index 0000000..463ad22 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/dirty_red_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..7a10e52 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/dirty_red_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/dirty_red_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/dirty_red_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..1560aaf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/dirty_red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..1dd59bd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/dirty_red_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/dirty_red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/eternium_block.json b/src/main/resources/assets/ariasessentials/blockstates/eternium_block.json new file mode 100644 index 0000000..3cf3d7a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/eternium_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/eternium_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/eternium_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/eternium_ore_block.json new file mode 100644 index 0000000..200aca7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/eternium_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/eternium_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_blue_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_blue_pool_light.json new file mode 100644 index 0000000..eb45c06 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_blue_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_blue_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_green_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_green_pool_light.json new file mode 100644 index 0000000..56ea249 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_green_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_green_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_pool_light.json new file mode 100644 index 0000000..eaf2bff --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/filthy_red_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/filthy_red_pool_light.json new file mode 100644 index 0000000..6c66181 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/filthy_red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/filthy_red_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_light.json new file mode 100644 index 0000000..5b4d3b0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/green_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile.json new file mode 100644 index 0000000..f20c044 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/green_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json new file mode 100644 index 0000000..a4d9c0f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/green_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/green_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/green_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json new file mode 100644 index 0000000..a9fbe82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/green_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/green_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json new file mode 100644 index 0000000..78f64c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/green_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/green_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..cfb17f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/nether_vault_steel_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/nether_vault_steel_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json new file mode 100644 index 0000000..42563b0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_door.json @@ -0,0 +1,124 @@ +{ + "variants": { + "facing=east,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left" + }, + "facing=east,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 90 + }, + "facing=east,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right" + }, + "facing=east,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 270 + }, + "facing=east,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left" + }, + "facing=east,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 90 + }, + "facing=east,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right" + }, + "facing=east,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 270 + }, + "facing=north,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open" + }, + "facing=north,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 270 + }, + "facing=north,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 180 + }, + "facing=north,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 270 + }, + "facing=north,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open" + }, + "facing=north,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 270 + }, + "facing=north,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 180 + }, + "facing=south,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 90 + }, + "facing=south,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 180 + }, + "facing=south,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 90 + }, + "facing=south,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open" + }, + "facing=south,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 90 + }, + "facing=south,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 180 + }, + "facing=south,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 90 + }, + "facing=south,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open" + }, + "facing=west,half=lower,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left", + "y": 180 + }, + "facing=west,half=lower,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_left_open", + "y": 270 + }, + "facing=west,half=lower,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right", + "y": 180 + }, + "facing=west,half=lower,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_bottom_right_open", + "y": 90 + }, + "facing=west,half=upper,hinge=left,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left", + "y": 180 + }, + "facing=west,half=upper,hinge=left,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_left_open", + "y": 270 + }, + "facing=west,half=upper,hinge=right,open=false": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right", + "y": 180 + }, + "facing=west,half=upper,hinge=right,open=true": { + "model": "ariasessentials:block/old_industrial_wood_door_top_right_open", + "y": 90 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json new file mode 100644 index 0000000..5419f88 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_planks.json @@ -0,0 +1,18 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/old_industrial_wood_planks_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_planks_model3" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json new file mode 100644 index 0000000..bff1e69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_slab.json @@ -0,0 +1,88 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_double" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_slab_model0_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model1_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model2_top" + }, + { + "model": "ariasessentials:block/old_industrial_wood_slab_model3_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json new file mode 100644 index 0000000..d689f7f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/old_industrial_wood_stairs.json @@ -0,0 +1,1804 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/old_industrial_wood_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/panzerglass_block.json b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_block.json new file mode 100644 index 0000000..428aee3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_block.json @@ -0,0 +1,18 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/panzerglass_block_model0" + }, + { + "model": "ariasessentials:block/panzerglass_block_model1" + }, + { + "model": "ariasessentials:block/panzerglass_block_model2" + }, + { + "model": "ariasessentials:block/panzerglass_block_model3" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/panzerglass_slab.json b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_slab.json new file mode 100644 index 0000000..35035f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/panzerglass_slab.json @@ -0,0 +1,88 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_double" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/panzerglass_slab_model0_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model1_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model2_top" + }, + { + "model": "ariasessentials:block/panzerglass_slab_model3_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/pool_light.json new file mode 100644 index 0000000..2e4139f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile.json new file mode 100644 index 0000000..7c84b59 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_slab.json new file mode 100644 index 0000000..b06dc83 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json new file mode 100644 index 0000000..23fd6c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_wall.json new file mode 100644 index 0000000..6fd26fe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json b/src/main/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json new file mode 100644 index 0000000..93f5f3d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/raw_cobalt_ore.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/raw_cobalt_ore" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete.json new file mode 100644 index 0000000..7012fe4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/rebar_concrete_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json new file mode 100644 index 0000000..7468bbe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json new file mode 100644 index 0000000..bb03138 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json new file mode 100644 index 0000000..5c1db84 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json new file mode 100644 index 0000000..d4ce6d0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_double" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model0_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model1_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model2_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model3_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model4_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model5_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model6_top" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json new file mode 100644 index 0000000..c0e5399 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_tile_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/rebar_concrete_tile_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json new file mode 100644 index 0000000..87da187 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/rebar_concrete_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/rebar_concrete_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_light.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_light.json new file mode 100644 index 0000000..a29ae57 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_light.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_pool_light" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile.json new file mode 100644 index 0000000..a555bcd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_pool_tile" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json new file mode 100644 index 0000000..cf0eac2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_slab.json @@ -0,0 +1,13 @@ +{ + "variants": { + "type=bottom": { + "model": "ariasessentials:block/red_pool_tile_slab" + }, + "type=double": { + "model": "ariasessentials:block/red_pool_tile" + }, + "type=top": { + "model": "ariasessentials:block/red_pool_tile_slab_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json new file mode 100644 index 0000000..90760ed --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_pool_tile_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/red_pool_tile_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json new file mode 100644 index 0000000..15f8a13 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_pool_tile_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/red_pool_tile_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/red_stairs.json new file mode 100644 index 0000000..2078bf3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_stairs.json @@ -0,0 +1,209 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner" + }, + "facing=east,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=east,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer" + }, + "facing=east,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs" + }, + "facing=east,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=east,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=east,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180 + }, + "facing=north,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=north,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 270 + }, + "facing=north,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 270 + }, + "facing=north,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=north,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180 + }, + "facing=north,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=south,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner" + }, + "facing=south,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer" + }, + "facing=south,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=south,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 90 + }, + "facing=south,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=south,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=south,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 90 + }, + "facing=west,half=bottom,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "y": 180 + }, + "facing=west,half=bottom,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "y": 180 + }, + "facing=west,half=top,shape=inner_left": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=inner_right": { + "model": "ariasessentials:block/red_stairs_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=outer_left": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + "facing=west,half=top,shape=outer_right": { + "model": "ariasessentials:block/red_stairs_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + "facing=west,half=top,shape=straight": { + "model": "ariasessentials:block/red_stairs", + "uvlock": true, + "x": 180, + "y": 180 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_tile.json b/src/main/resources/assets/ariasessentials/blockstates/red_tile.json new file mode 100644 index 0000000..128ecac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_tile.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_tile" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_tile_br.json b/src/main/resources/assets/ariasessentials/blockstates/red_tile_br.json new file mode 100644 index 0000000..5984fc4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_tile_br.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/red_tile_br", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/red_tile_br" + }, + "facing=south": { + "model": "ariasessentials:block/red_tile_br", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/red_tile_br", + "y": 270 + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json b/src/main/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json new file mode 100644 index 0000000..d9c4f1b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_tile_to_wall" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json new file mode 100644 index 0000000..deabbc2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_wall_variant_1" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json new file mode 100644 index 0000000..08ccfe9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/red_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/red_wall_variant_2" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_block.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_block.json new file mode 100644 index 0000000..0efb300 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_block.json @@ -0,0 +1,30 @@ +{ + "variants": { + "": [ + { + "model": "ariasessentials:block/slag_brick_block_model0" + }, + { + "model": "ariasessentials:block/slag_brick_block_model1" + }, + { + "model": "ariasessentials:block/slag_brick_block_model2" + }, + { + "model": "ariasessentials:block/slag_brick_block_model3" + }, + { + "model": "ariasessentials:block/slag_brick_block_model4" + }, + { + "model": "ariasessentials:block/slag_brick_block_model5" + }, + { + "model": "ariasessentials:block/slag_brick_block_model6" + }, + { + "model": "ariasessentials:block/slag_brick_block_model7" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_slab.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_slab.json new file mode 100644 index 0000000..3418db0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_slab.json @@ -0,0 +1,160 @@ +{ + "variants": { + "type=bottom,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_bottom" + } + ], + "type=bottom,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_bottom" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_bottom" + } + ], + "type=double,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_double" + } + ], + "type=double,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_double" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_double" + } + ], + "type=top,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_top" + } + ], + "type=top,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_slab_model0_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model1_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model2_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model3_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model4_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model5_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model6_top" + }, + { + "model": "ariasessentials:block/slag_brick_slab_model7_top" + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json new file mode 100644 index 0000000..a88b91e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_stairs.json @@ -0,0 +1,3444 @@ +{ + "variants": { + "facing=east,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7" + } + ], + "facing=east,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7" + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=east,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=east,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180 + } + ], + "facing=north,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=north,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner" + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer" + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer" + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=south,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=south,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 90 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 90 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=bottom,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=inner_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_inner", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_inner", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_left,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=outer_right,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6_outer", + "uvlock": true, + "x": 180, + "y": 270 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7_outer", + "uvlock": true, + "x": 180, + "y": 270 + } + ], + "facing=west,half=top,shape=straight,waterlogged=false": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ], + "facing=west,half=top,shape=straight,waterlogged=true": [ + { + "model": "ariasessentials:block/slag_brick_stairs_model0", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model1", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model2", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model3", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model4", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model5", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model6", + "uvlock": true, + "x": 180, + "y": 180 + }, + { + "model": "ariasessentials:block/slag_brick_stairs_model7", + "uvlock": true, + "x": 180, + "y": 180 + } + ] + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/slag_brick_wall.json b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_wall.json new file mode 100644 index 0000000..d9428b0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/slag_brick_wall.json @@ -0,0 +1,90 @@ +{ + "multipart": [ + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_post" + }, + "when": { + "up": "true" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 90 + }, + "when": { + "east": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true + }, + "when": { + "north": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true + }, + "when": { + "north": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 180 + }, + "when": { + "south": "tall" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "low" + } + }, + { + "apply": { + "model": "ariasessentials:block/slag_brick_wall_side_tall", + "uvlock": true, + "y": 270 + }, + "when": { + "west": "tall" + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/stable_singularity.json b/src/main/resources/assets/ariasessentials/blockstates/stable_singularity.json new file mode 100644 index 0000000..a0b6595 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/stable_singularity.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/stable_singularity" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk.json new file mode 100644 index 0000000..86405c8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_catwalk" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_block.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_block.json new file mode 100644 index 0000000..ea65aec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_catwalk_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs.json new file mode 100644 index 0000000..bee5822 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_dr.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..d15acf8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_dr.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs_dr", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_lr.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..3f51057 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_lr.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs_lr", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_rr.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..eb2f94c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_stairs_rr.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr" + }, + "facing=south": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_catwalk_stairs_rr", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_top.json b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_top.json new file mode 100644 index 0000000..8f1b5f1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_catwalk_top.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_catwalk_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating.json b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating.json new file mode 100644 index 0000000..7ef2258 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_floor_grating" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating_top.json b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating_top.json new file mode 100644 index 0000000..c5d3a30 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_floor_grating_top.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_floor_grating_top" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_railing.json b/src/main/resources/assets/ariasessentials/blockstates/steel_railing.json new file mode 100644 index 0000000..601a976 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_railing.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/steel_railing", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/steel_railing" + }, + "facing=south": { + "model": "ariasessentials:block/steel_railing", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/steel_railing", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/steel_table.json b/src/main/resources/assets/ariasessentials/blockstates/steel_table.json new file mode 100644 index 0000000..dc85544 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/steel_table.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/steel_table" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/tflipflop.json b/src/main/resources/assets/ariasessentials/blockstates/tflipflop.json new file mode 100644 index 0000000..fcf17b7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/tflipflop.json @@ -0,0 +1,64 @@ +{ + "variants": { + "facing=east,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=east,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=east,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=east,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 90 + }, + "facing=north,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=north,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=north,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=north,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop" + }, + "facing=south,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=south,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=south,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=south,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 180 + }, + "facing=west,inputpower=false,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + }, + "facing=west,inputpower=false,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + }, + "facing=west,inputpower=true,powered=false": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + }, + "facing=west,inputpower=true,powered=true": { + "model": "ariasessentials:block/tflipflop", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/uncrafter.json b/src/main/resources/assets/ariasessentials/blockstates/uncrafter.json new file mode 100644 index 0000000..5ece9cf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/uncrafter.json @@ -0,0 +1,19 @@ +{ + "variants": { + "facing=east": { + "model": "ariasessentials:block/uncrafter", + "y": 90 + }, + "facing=north": { + "model": "ariasessentials:block/uncrafter" + }, + "facing=south": { + "model": "ariasessentials:block/uncrafter", + "y": 180 + }, + "facing=west": { + "model": "ariasessentials:block/uncrafter", + "y": 270 + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/blockstates/vault_steel_ore_block.json new file mode 100644 index 0000000..f5fbccf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/vault_steel_ore_block.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/vault_steel_ore_block" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/blockstates/void.json b/src/main/resources/assets/ariasessentials/blockstates/void.json new file mode 100644 index 0000000..171175b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/void.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/void" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/blockstates/whiteout.json b/src/main/resources/assets/ariasessentials/blockstates/whiteout.json new file mode 100644 index 0000000..4e4afee --- /dev/null +++ b/src/main/resources/assets/ariasessentials/blockstates/whiteout.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "ariasessentials:block/whiteout" + } + } +} diff --git a/src/main/resources/assets/ariasessentials/lang/en_us.json b/src/main/resources/assets/ariasessentials/lang/en_us.json index 260d8c2..f2da4d7 100644 --- a/src/main/resources/assets/ariasessentials/lang/en_us.json +++ b/src/main/resources/assets/ariasessentials/lang/en_us.json @@ -1,50 +1,165 @@ { - "itemGroup.tabs.ariasessentials": "Aria's Essentials", - "item.ariasessentials.tiab": "Time in a Bottle", - "item.ariasessentials.eiab": "Energy in a Bottle", - "item.ariasessentials.metal_bar": "Metal Bar", + + "key.ariasessentials.open_vault": "Opens Vault 0", + "key.category.ariasessentials": "Aria's Essentials", + + "itemGroup.ariasessentials": "Aria's Essentials", + + "item.minecraft.splash_potion.effect.flight": "Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight": "Lingering Potion of Flight", + "item.minecraft.potion.effect.flight": "Potion of Flight", + + "item.minecraft.splash_potion.effect.flight_awkward": "Awkward Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight_awkward": "Awkward Lingering Potion of Flight", + "item.minecraft.potion.effect.flight_awkward": "Awkward Potion of Flight", + + "item.minecraft.splash_potion.effect.flight_basic": "Thick Splash Potion of Flight", + "item.minecraft.lingering_potion.effect.flight_basic": "Thick Lingering Potion of Flight", + "item.minecraft.potion.effect.flight_basic": "Thick Potion of Flight", - "block.ariasessentials.clinker_brick_block": "Clinker Brick Block", - "block.ariasessentials.clinker_brick_wall": "Clinker Brick Wall", - "block.ariasessentials.clinker_brick_recessed": "Recessed Clinker Brick", - "block.ariasessentials.clinker_brick_vertically_slit": "Vertically Slit Clinker Bricks", - "block.ariasessentials.clinker_brick_slab": "Clinker Brick Slab", - "block.ariasessentials.clinker_brick_stairs": "Clinker Brick Stairs", - "block.ariasessentials.clinker_brick_stained_block": "Stained Clinker Brick Block", - "block.ariasessentials.clinker_brick_stained_slab": "Stained Clinker Brick Slab", - "block.ariasessentials.clinker_brick_stained_stairs": "Stained Clinker Brick Stairs", - "block.ariasessentials.clinker_brick_sastor_corner_block": "Sandstone Ornated Clinker Brick", - "block.ariasessentials.slag_brick_block": "Slag Brick Block", - "block.ariasessentials.slag_brick_slab": "Slag Brick Slab", - "block.ariasessentials.slag_brick_stairs": "Slag Brick Stairs", - "block.ariasessentials.slag_brick_wall": "Slag Brick Wall", - "block.ariasessentials.rebar_concrete": "Rebar Concrete Block", + "item.ariasessentials.eternium_ore": "Raw Eternium Ore", + "item.ariasessentials.ihan_crystal": "Ihan Crystal", + "item.ariasessentials.ihan_crystal.levels": "Stored XP: ", + "item.ariasessentials.ihan_crystal.empty": "* Crystal Is Empty *", + "item.ariasessentials.ihan_crystal.need_repair": "Ihan Crystal must now be repaired", + "item.ariasessentials.ihan_crystal.durability": "Durability: ", + "item.ariasessentials.eternium_dust": "Eternium Dust", + "item.ariasessentials.eternium_ingot": "Eternium Ingot", + "item.ariasessentials.eternium_rod": "Eternium Rod", + "item.ariasessentials.singularity": "Unstable Singularity", + "item.ariasessentials.scrubber_frame_piece": "Scrubber Frame Component", + "item.ariasessentials.scrubber_frame": "Scrubber Frame", + "item.ariasessentials.mob_capture_ball": "Mob Capture Ball", + "item.ariasessentials.empty_spawn_egg": "Empty Spawn Egg", + "item.ariasessentials.compressed_obsidian_sheet": "Sheet of Compressed Obsidian", + "item.ariasessentials.layered_compressed_obsidian_sheet": "Layered Sheet of Compressed Obsidian", + "item.ariasessentials.encased_singularity": "Encased Singularity", + "item.ariasessentials.encased_singularity.desc": "A singularity encased in stone, ready to be further compressed into bedrock", + "item.ariasessentials.deprecated": "Deprecated Item", + "item.ariasessentials.white_brick": "White Brick", + "item.ariasessentials.blue_brick": "Blue Brick", + "item.ariasessentials.light_blue_brick": "Light Blue Brick", + "item.ariasessentials.cyan_brick": "Cyan Brick", + "item.ariasessentials.dark_red_dye": "Dark Red Dye", + "item.ariasessentials.red_brick": "Red Brick", + "item.ariasessentials.dark_red_brick": "Dark Red Brick", + "item.ariasessentials.lime_brick": "Lime Brick", + "item.ariasessentials.green_brick": "Green Brick", + "item.ariasessentials.partial_item": "Partial Item", + "item.ariasessentials.magma_powder": "Magma Powder", + + + + "block.ariasessentials.eternium_ore_block": "Eternium Ore", + "block.ariasessentials.deepslate_eternium_ore_block": "Deepslate Eternium Ore", + "block.ariasessentials.clear_glass_block": "Clear Glass Block", + "block.ariasessentials.eternium_block": "Block of Eternium", + "block.ariasessentials.void": "Void", + "block.ariasessentials.whiteout": "White", + "block.ariasessentials.blood_red": "Blood Red", + "block.ariasessentials.red_tile": "Red Tile", + "block.ariasessentials.red_tile_br": "Blood Red Tile Transition", + "block.ariasessentials.red_stairs": "Blood Red Stairs", + "block.ariasessentials.red_tile_to_wall": "Red Floor To Wall Transition", + "block.ariasessentials.red_wall_variant_1": "Red Wall", + "block.ariasessentials.red_wall_variant_2": "Red Wall", + "block.ariasessentials.cyan": "Cyan", + "block.ariasessentials.cyan_tile": "Cyan Tile", + "block.ariasessentials.cyan_tile_br": "Cyan Tile Transition", + "block.ariasessentials.cyan_stairs": "Cyan Stairs", + "block.ariasessentials.cyan_tile_to_wall": "Cyan Floor To Wall Transition", + "block.ariasessentials.cyan_wall_variant_1": "Cyan Wall", + "block.ariasessentials.cyan_wall_variant_2": "Cyan Wall", + "block.ariasessentials.pool_light": "Pool Light", + "block.ariasessentials.dirty_pool_light": "Dirty Pool Light", + "block.ariasessentials.filthy_pool_light": "Filthy Pool Light", + "block.ariasessentials.dark_pool_light": "Dark Pool Light", + "block.ariasessentials.blue_pool_light": "Blue Pool Light", + "block.ariasessentials.dirty_red_pool_light": "Dirty Red Pool Light", + "block.ariasessentials.filthy_red_pool_light": "Filthy Red Pool Light", + "block.ariasessentials.filthy_blue_pool_light": "Filthy Blue Pool Light", + "block.ariasessentials.pool_tile": "Pool Tiles", + "block.ariasessentials.pool_tile_stairs": "Pool Tile Stairs", + "block.ariasessentials.pool_tile_slab": "Pool Tile Slab", + "block.ariasessentials.pool_tile_wall": "Pool Tile Wall", + "block.ariasessentials.dirty_pool_tile": "Dirty Pool Tiles", + "block.ariasessentials.dirty_pool_tile_stairs": "Dirty Pool Tile Stairs", + "block.ariasessentials.dirty_pool_tile_slab": "Dirty Pool Tile Slab", + "block.ariasessentials.dirty_pool_tile_wall": "Dirty Pool Tile Wall", + "block.ariasessentials.dark_pool_tile": "Dark Pool Tiles", + "block.ariasessentials.dark_pool_tile_stairs": "Dark Pool Tile Stairs", + "block.ariasessentials.dark_pool_tile_slab": "Dark Pool Tile Slab", + "block.ariasessentials.blue_pool_tile": "Blue Pool Tiles", + "block.ariasessentials.blue_pool_tile_stairs": "Blue Pool Tile Stairs", + "block.ariasessentials.blue_pool_tile_slab": "Blue Pool Tile Slab", + "block.ariasessentials.blue_pool_tile_wall": "Blue Pool Tile Wall", + "block.ariasessentials.dirty_blue_pool_tile": "Dirty Blue Pool Tiles", + "block.ariasessentials.dirty_blue_pool_tile_stairs": "Dirty Blue Pool Tile Stairs", + "block.ariasessentials.dirty_blue_pool_tile_slab": "Dirty Blue Pool Tile Slab", + "block.ariasessentials.dirty_blue_pool_tile_wall": "Dirty Blue Pool Tile Wall", + "block.ariasessentials.dirty_blue_pool_light": "Dirty Blue Pool Light", + "block.ariasessentials.red_pool_tile": "Red Pool Tiles", + "block.ariasessentials.red_pool_tile_stairs": "Red Pool Tile Stairs", + "block.ariasessentials.red_pool_tile_slab": "Red Pool Tile Slab", + "block.ariasessentials.red_pool_tile_wall": "Red Pool Tile Wall", + "block.ariasessentials.red_pool_light": "Red Pool Light", + "block.ariasessentials.dirty_red_pool_tile": "Dirty Red Pool Tile", + "block.ariasessentials.dirty_red_pool_tile_stairs": "Dirty Red Pool Tile Stairs", + "block.ariasessentials.dirty_red_pool_tile_slab": "Dirty Red Pool Tile Slab", + "block.ariasessentials.dirty_red_pool_tile_wall": "Dirty Red Pool Tile Wall", + "block.ariasessentials.dark_red_wool": "Dark Red Wool", + "block.ariasessentials.dark_red_carpet": "Dark Red Carpet", + "block.ariasessentials.green_pool_tile": "Green Pool Tiles", + "block.ariasessentials.green_pool_tile_stairs": "Green Pool Tile Stairs", + "block.ariasessentials.green_pool_tile_slab": "Green Pool Tile Slab", + "block.ariasessentials.green_pool_tile_wall": "Green Pool Tile Wall", + "block.ariasessentials.green_pool_light": "Green Pool Light", + "block.ariasessentials.dirty_green_pool_tile": "Dirty Green Pool Tile", + "block.ariasessentials.dirty_green_pool_tile_stairs": "Dirty Green Pool Tile Stairs", + "block.ariasessentials.dirty_green_pool_tile_slab": "Dirty Green Pool Tile Slab", + "block.ariasessentials.dirty_green_pool_tile_wall": "Dirty Green Pool Tile Wall", + "block.ariasessentials.dirty_green_pool_light": "Dirty Green Pool Light", + "block.ariasessentials.filthy_green_pool_light": "Filthy Green Pool Light", + "block.ariasessentials.uncrafter": "Uncrafter", + "block.ariasessentials.rebar_concrete": "Rebar Concrete", "block.ariasessentials.rebar_concrete_slab": "Rebar Concrete Slab", "block.ariasessentials.rebar_concrete_stairs": "Rebar Concrete Stairs", - "block.ariasessentials.rebar_concrete_tile": "Rebar Concrete Tile", - "block.ariasessentials.rebar_concrete_tile_slab": "Rebar Concrete Tile Slab", - "block.ariasessentials.rebar_concrete_tile_stairs": "Rebar Concrete Tile Stairs", "block.ariasessentials.rebar_concrete_wall": "Rebar Concrete Wall", - "block.ariasessentials.panzerglass_block": "Panzer Glass Block", - "block.ariasessentials.panzerglass_slab": "Panzer Glass Slab", - "block.ariasessentials.old_industrial_wood_door": "Old Industrial Wood Door", - "block.ariasessentials.old_industrial_wood_planks": "Old Industrial Wood Planks", - "block.ariasessentials.old_industrial_wood_slab": "Old Industrial Wood Slab", - "block.ariasessentials.old_industrial_wood_stairs": "Old Industrial Wood Stairs", - "block.ariasessentials.steel_floor_grating": "Steel Floor Grating", - "block.ariasessentials.steel_table": "Steel Table", - "block.ariasessentials.steel_catwalk": "Steel Catwalk", - "block.ariasessentials.steel_catwalk_top": "Top Oriented Steel Catwalk", - "block.ariasessentials.steel_railing": "Steel Railing", - "block.ariasessentials.steel_catwalk_stairs": "Steel Catwalk Stairs", - "block.ariasessentials.steel_catwalk_stairs_lr": "Steel Catwalk Left Rail", - "block.ariasessentials.steel_catwalk_stairs_rr": "Steel Catwalk Right Rail", - "block.ariasessentials.steel_catwalk_stairs_dr": "Steel Catwalk Double Rail", - "block.ariasessentials.steel_catwalk_block": "Steel Catwalk Block", - "block.ariasessentials.tflipflop": "T-Flip Flop (WIP)", + "block.ariasessentials.panzerglass_block": "Panzerglass", - "key.category.ariasessentials": "Aria's Essentials", - "key.ariasessentials.autowalk": "Auto Walk" -} \ No newline at end of file + + + "enchantment.ariasessentials.mob_egging": "Mob Egging", + "enchantment.ariasessentials.player_flight": "Flight", + "enchantment.ariasessentials.mob_egging.desc": "Chance of mob spawn eggs to drop", + "enchantment.ariasessentials.flight.desc": "Allows you to fly!", + "enchantment.ariasessentials.borrowed_protection": "Borrowed Protection", + "enchantment.ariasessentials.borrowed_protection.desc": "Borrows protection from any nearby player.", + "enchantment.ariasessentials.night_vision": "Night Vision", + "enchantment.ariasessentials.night_vision.desc": "See in the dark!", + "enchantment.ariasessentials.water_breathing": "Water Breathing", + "enchantment.ariasessentials.water_breathing.desc": "Become one with the fishy", + "enchantment.ariasessentials.consumption_mending": "Scrap Mending", + "enchantment.ariasessentials.consumption_mending.desc": "Consumes scrap items to repair durability. May consume curses.", + "enchantment.ariasessentials.extra_strength": "WIP Damage Increaser", + "enchantment.ariasessentials.extra_strength.desc": "Exponentially increases the damage dealt to enemies to even the odds", + "enchantment.ariasessentials.vampiric_mend": "Vampiric Mending", + "enchantment.ariasessentials.vampiric_mend.desc": "Exchanges half a heart of HP in exchange for 50 durability every 5 seconds. Caution: May kill you...repeatedly", + + "effect.ariasessentials.flight": "Flight", + + + "dev.zontreck.ariasessentials.msgs.only_player": "§cOnly players are allowed to execute this command", + + "dev.zontreck.ariasessentials.msgs.command_cooling_down": "This command is currently on cooldown. You must wait for ", + "dev.zontreck.ariasessentials.msgs.command_cooling_down_seconds": "seconds.", + + "dev.zontreck.ariasessentials.msgs.warps.set.success": "Warp successfully created", + "dev.zontreck.ariasessentials.msgs.warps.del.success": "Warp successfully deleted", + "dev.zontreck.ariasessentials.msgs.warps.set.fail": "Failed to create warp", + "dev.zontreck.ariasessentials.msgs.warps.del.fail": "Failed to delete warp", + + "death.attack.vampiric_mend": "%1$s's health was drained by a Vampiric item" +} diff --git a/src/main/resources/assets/ariasessentials/models/block/blood_red.json b/src/main/resources/assets/ariasessentials/models/block/blood_red.json new file mode 100644 index 0000000..c54b731 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blood_red.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_light.json new file mode 100644 index 0000000..14a2016 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile.json new file mode 100644 index 0000000..5113788 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json new file mode 100644 index 0000000..93be66c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json new file mode 100644 index 0000000..926613b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json new file mode 100644 index 0000000..9b82c86 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..df7ce35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..2afe8a7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/blue_pool_tile", + "side": "ariasessentials:block/blue_pool_tile", + "top": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json new file mode 100644 index 0000000..39b93ed --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json new file mode 100644 index 0000000..aa9f228 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json new file mode 100644 index 0000000..29c8e53 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..65ed440 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/blue_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json new file mode 100644 index 0000000..5639f9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json new file mode 100644 index 0000000..7b24bb9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json new file mode 100644 index 0000000..d9c7e35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json new file mode 100644 index 0000000..7ed0853 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json new file mode 100644 index 0000000..bfb1fce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json new file mode 100644 index 0000000..90018f0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json new file mode 100644 index 0000000..abc1a0c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json new file mode 100644 index 0000000..248faac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json new file mode 100644 index 0000000..4f1294a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json new file mode 100644 index 0000000..5639f9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json new file mode 100644 index 0000000..3046906 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json new file mode 100644 index 0000000..04d6bec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json new file mode 100644 index 0000000..7b24bb9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json new file mode 100644 index 0000000..9c08f8e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json new file mode 100644 index 0000000..7549029 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json new file mode 100644 index 0000000..d9c7e35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json new file mode 100644 index 0000000..9802deb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json new file mode 100644 index 0000000..459b533 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json new file mode 100644 index 0000000..7ed0853 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json new file mode 100644 index 0000000..c7c04a4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json new file mode 100644 index 0000000..7386123 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json new file mode 100644 index 0000000..bfb1fce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json new file mode 100644 index 0000000..4057d97 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json new file mode 100644 index 0000000..14ade17 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json new file mode 100644 index 0000000..90018f0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json new file mode 100644 index 0000000..5724b69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json new file mode 100644 index 0000000..57c5265 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json new file mode 100644 index 0000000..abc1a0c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json new file mode 100644 index 0000000..88f360f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json new file mode 100644 index 0000000..24c30f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json new file mode 100644 index 0000000..248faac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json new file mode 100644 index 0000000..572e869 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json new file mode 100644 index 0000000..73fd6a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json new file mode 100644 index 0000000..6a6b419 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json new file mode 100644 index 0000000..3ae29d7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json new file mode 100644 index 0000000..1f8a32d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json new file mode 100644 index 0000000..c6c2ec9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json new file mode 100644 index 0000000..65f0007 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json new file mode 100644 index 0000000..6a2f947 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json new file mode 100644 index 0000000..8c03333 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json new file mode 100644 index 0000000..7cfb79d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json new file mode 100644 index 0000000..73fd6a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json new file mode 100644 index 0000000..8e13360 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json new file mode 100644 index 0000000..47f8fee --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json new file mode 100644 index 0000000..6a6b419 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json new file mode 100644 index 0000000..7aee18d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json new file mode 100644 index 0000000..313173f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json new file mode 100644 index 0000000..3ae29d7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json new file mode 100644 index 0000000..e7a64da --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json new file mode 100644 index 0000000..7d87bbc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json new file mode 100644 index 0000000..1f8a32d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json new file mode 100644 index 0000000..bd66adf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json new file mode 100644 index 0000000..3708403 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json new file mode 100644 index 0000000..c6c2ec9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json new file mode 100644 index 0000000..6100109 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json new file mode 100644 index 0000000..3e95198 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json new file mode 100644 index 0000000..65f0007 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json new file mode 100644 index 0000000..b3d9261 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json new file mode 100644 index 0000000..8777c3c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json new file mode 100644 index 0000000..6a2f947 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json new file mode 100644 index 0000000..70f6da3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json new file mode 100644 index 0000000..ed88fb3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json new file mode 100644 index 0000000..8c03333 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json new file mode 100644 index 0000000..e868cfe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json new file mode 100644 index 0000000..ab70c9b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json new file mode 100644 index 0000000..3bc8f18 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json new file mode 100644 index 0000000..fb41a7b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json new file mode 100644 index 0000000..88482c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json new file mode 100644 index 0000000..34fa07b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json new file mode 100644 index 0000000..76f0ee4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json new file mode 100644 index 0000000..6ce14aa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json new file mode 100644 index 0000000..83a46db --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json new file mode 100644 index 0000000..985759e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json new file mode 100644 index 0000000..72b8b28 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json new file mode 100644 index 0000000..f150b0a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json new file mode 100644 index 0000000..428a4c8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json new file mode 100644 index 0000000..ce81f14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json new file mode 100644 index 0000000..3810fc1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json new file mode 100644 index 0000000..6dee365 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json new file mode 100644 index 0000000..0c39ff1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json new file mode 100644 index 0000000..057026a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json new file mode 100644 index 0000000..dd427ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json new file mode 100644 index 0000000..1fa7c47 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json new file mode 100644 index 0000000..136aea6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json new file mode 100644 index 0000000..141192a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json new file mode 100644 index 0000000..5df05af --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json new file mode 100644 index 0000000..f23ffa9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json new file mode 100644 index 0000000..b0bdbe2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stained_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_stained_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json new file mode 100644 index 0000000..77fbaf6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json new file mode 100644 index 0000000..d0cb471 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json new file mode 100644 index 0000000..b1156a6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json new file mode 100644 index 0000000..ed5e7f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json new file mode 100644 index 0000000..6d8da06 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json new file mode 100644 index 0000000..f320bca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json new file mode 100644 index 0000000..b647a42 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json new file mode 100644 index 0000000..8855303 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json new file mode 100644 index 0000000..d2d0faa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json new file mode 100644 index 0000000..b95c490 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json new file mode 100644 index 0000000..47b0205 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json new file mode 100644 index 0000000..73a0f5d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json new file mode 100644 index 0000000..e807d4d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json new file mode 100644 index 0000000..cce4e39 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json new file mode 100644 index 0000000..43885ae --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json new file mode 100644 index 0000000..dde4209 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json new file mode 100644 index 0000000..ab10146 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json new file mode 100644 index 0000000..8c13a9c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json new file mode 100644 index 0000000..18bcaec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json new file mode 100644 index 0000000..1d94fb2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json new file mode 100644 index 0000000..6239b79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json new file mode 100644 index 0000000..9fa6a6d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json new file mode 100644 index 0000000..d473aac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json new file mode 100644 index 0000000..5654273 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "side": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7", + "top": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json new file mode 100644 index 0000000..998224c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json new file mode 100644 index 0000000..1d2eb0e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json new file mode 100644 index 0000000..e424210 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json new file mode 100644 index 0000000..fba05de --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/clinker_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/clinker_brick/clinker_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cobalt_block.json b/src/main/resources/assets/ariasessentials/models/block/cobalt_block.json new file mode 100644 index 0000000..860301c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cobalt_block.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/cobalt_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/block/cobalt_ore.json new file mode 100644 index 0000000..2c8a99e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cobalt_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/cobalt_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/compressed_obsidian_block.json b/src/main/resources/assets/ariasessentials/models/block/compressed_obsidian_block.json new file mode 100644 index 0000000..7ed6a8f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/compressed_obsidian_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/compressed_obsidian_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/compression_chamber.bbmodel b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.bbmodel new file mode 100644 index 0000000..b0b54aa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"compression_chamber","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":32,"height":32},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,1,16],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[16,0,32,1],"texture":0},"east":{"uv":[16,1,32,2],"texture":0},"south":{"uv":[16,2,32,3],"texture":0},"west":{"uv":[16,3,32,4],"texture":0},"up":{"uv":[16,16,0,0],"texture":0},"down":{"uv":[16,16,0,32],"texture":0}},"type":"cube","uuid":"4127c454-2fb0-e622-cd35-4a2c275b298f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,1,1],"to":[9,6,3],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,4,10],"texture":1},"east":{"uv":[4,0,8,10],"texture":1},"south":{"uv":[8,0,12,10],"texture":1},"west":{"uv":[0,10,4,20],"texture":1},"up":{"uv":[8,14,4,10],"texture":1},"down":{"uv":[12,10,8,14],"texture":1}},"type":"cube","uuid":"7bc5e172-8d51-da52-0e60-48eac09d9203"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,4,0],"to":[12,12,1],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,8,8],"texture":2},"east":{"uv":[8,0,9,8],"texture":2},"south":{"uv":[0,8,8,16],"texture":2},"west":{"uv":[8,8,9,16],"texture":2},"up":{"uv":[17,1,9,0],"texture":2},"down":{"uv":[17,1,9,2],"texture":2}},"type":"cube","uuid":"87d3380c-cc92-97ea-e2a3-dea8c3ce0025"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[7,9,1],"to":[9,13,3],"autouv":1,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,2,4],"texture":1},"east":{"uv":[0,0,2,4],"texture":1},"south":{"uv":[0,0,2,4],"texture":1},"west":{"uv":[0,0,2,4],"texture":1},"up":{"uv":[0,0,2,2],"texture":1},"down":{"uv":[0,0,2,2],"texture":1}},"type":"cube","uuid":"2e475703-1b35-858d-1de6-0f6b3a6aeb76"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[2,12,3],"to":[14,13,14],"autouv":0,"color":8,"origin":[0,0,0],"faces":{"north":{"uv":[12,0,24,1],"texture":3},"east":{"uv":[12,2,23,3],"texture":3},"south":{"uv":[12,1,24,2],"texture":3},"west":{"uv":[12,3,23,4],"texture":3},"up":{"uv":[12,11,0,0],"texture":3},"down":{"uv":[12,11,0,22],"texture":3}},"type":"cube","uuid":"b072854b-3c04-b74c-1e47-adfc7053010c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[3,11,4],"to":[13,12,13],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[10,0,20,1],"texture":4},"east":{"uv":[10,2,19,3],"texture":4},"south":{"uv":[10,1,20,2],"texture":4},"west":{"uv":[10,3,19,4],"texture":4},"up":{"uv":[10,9,0,0],"texture":4},"down":{"uv":[10,9,0,18],"texture":4}},"type":"cube","uuid":"360080b1-c9b3-4c12-b661-fe227ae36bef"}],"outliner":["4127c454-2fb0-e622-cd35-4a2c275b298f","7bc5e172-8d51-da52-0e60-48eac09d9203","87d3380c-cc92-97ea-e2a3-dea8c3ce0025","2e475703-1b35-858d-1de6-0f6b3a6aeb76","b072854b-3c04-b74c-1e47-adfc7053010c","360080b1-c9b3-4c12-b661-fe227ae36bef"],"textures":[{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png","name":"bottom_plate.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"0","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"446d560e-6c53-bb37-b2e0-562f133d895b","relative_path":"../../../textures/block/compression_chamber/bottom_plate.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAAtSURBVFhH7dBBEQAAAAFB+pcWw2cVOLPNeT334wABAgQIECBAgAABAgQIECAwGj8AIejuUf0AAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png","name":"support0.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"dd634ad9-68a4-2a75-8e32-98fdb796f845","relative_path":"../../../textures/block/compression_chamber/support0.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAABCSURBVDhPY2RgYPgPxNgAIw5xFGGQolED0MIgOLEEHEhr5/eQF4iUGECUjehRixyNA2cAMQkOpxqynI1s2qgBDAwAqOwQEUe/LPwAAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/power.png","name":"power.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"2","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"f846ff90-44c8-f33b-5a11-250e4f88f4cc","relative_path":"../../../textures/block/compression_chamber/power.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAAtSURBVFhH7dBBEQAAAAFB+pcWw2cVOLPNeT334wABAgQIECBAgAABAgQIECAwGj8AIejuUf0AAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png","name":"compression_lid.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"3","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"57fc6276-bd58-2b5b-9acc-035539406251","relative_path":"../../../textures/block/compression_chamber/compression_lid.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAAtSURBVFhH7dBBEQAAAAFB+pcWw2cVOLPNeT334wABAgQIECBAgAABAgQIECAwGj8AIejuUf0AAAAASUVORK5CYII="},{"path":"/run/media/Data/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png","name":"compressor.png","folder":"block/compression_chamber","namespace":"ariasessentials","id":"4","width":32,"height":32,"uv_width":32,"uv_height":32,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"dc15fa22-ccdf-8758-02e1-18f284260a8a","relative_path":"../../../textures/block/compression_chamber/compressor.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAABtSURBVFhHY2RgYPgPxASBDj9BJWAFVz4yMBKnEqIKpHj4OIBU31M9BGjqAGh0kRK9RKklOg2MOmD4hgCwgCGqHCAnhROTChlHHTAaAqMhMBoCxBQWtFRDUvOJFg4ZdcBoCIyGwGgIjIbAaAgAAGxQLCEftT89AAAAAElFTkSuQmCC"}]} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/compression_chamber.json b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.json new file mode 100644 index 0000000..7fa4b0d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/compression_chamber.json @@ -0,0 +1,86 @@ +{ + "credit": "Made with Blockbench", + "texture_size": [32, 32], + "textures": { + "0": "ariasessentials:block/compression_chamber/bottom_plate", + "1": "ariasessentials:block/compression_chamber/support0", + "2": "ariasessentials:block/compression_chamber/power", + "3": "ariasessentials:block/compression_chamber/compression_lid", + "4": "ariasessentials:block/compression_chamber/compressor", + "particle": "ariasessentials:block/compression_chamber/bottom_plate" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 1, 16], + "faces": { + "north": {"uv": [8, 0, 16, 0.5], "texture": "#0"}, + "east": {"uv": [8, 0.5, 16, 1], "texture": "#0"}, + "south": {"uv": [8, 1, 16, 1.5], "texture": "#0"}, + "west": {"uv": [8, 1.5, 16, 2], "texture": "#0"}, + "up": {"uv": [8, 8, 0, 0], "texture": "#0"}, + "down": {"uv": [8, 8, 0, 16], "texture": "#0"} + } + }, + { + "from": [7, 1, 1], + "to": [9, 6, 3], + "faces": { + "north": {"uv": [0, 0, 2, 5], "texture": "#1"}, + "east": {"uv": [2, 0, 4, 5], "texture": "#1"}, + "south": {"uv": [4, 0, 6, 5], "texture": "#1"}, + "west": {"uv": [0, 5, 2, 10], "texture": "#1"}, + "up": {"uv": [4, 7, 2, 5], "texture": "#1"}, + "down": {"uv": [6, 5, 4, 7], "texture": "#1"} + } + }, + { + "from": [4, 4, 0], + "to": [12, 12, 1], + "faces": { + "north": {"uv": [0, 0, 4, 4], "texture": "#2"}, + "east": {"uv": [4, 0, 4.5, 4], "texture": "#2"}, + "south": {"uv": [0, 4, 4, 8], "texture": "#2"}, + "west": {"uv": [4, 4, 4.5, 8], "texture": "#2"}, + "up": {"uv": [8.5, 0.5, 4.5, 0], "texture": "#2"}, + "down": {"uv": [8.5, 0.5, 4.5, 1], "texture": "#2"} + } + }, + { + "from": [7, 9, 1], + "to": [9, 13, 3], + "faces": { + "north": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "east": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "south": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "west": {"uv": [0, 0, 1, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#1"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#1"} + } + }, + { + "from": [2, 12, 3], + "to": [14, 13, 14], + "faces": { + "north": {"uv": [6, 0, 12, 0.5], "texture": "#3"}, + "east": {"uv": [6, 1, 11.5, 1.5], "texture": "#3"}, + "south": {"uv": [6, 0.5, 12, 1], "texture": "#3"}, + "west": {"uv": [6, 1.5, 11.5, 2], "texture": "#3"}, + "up": {"uv": [6, 5.5, 0, 0], "texture": "#3"}, + "down": {"uv": [6, 5.5, 0, 11], "texture": "#3"} + } + }, + { + "from": [3, 11, 4], + "to": [13, 12, 13], + "faces": { + "north": {"uv": [5, 0, 10, 0.5], "texture": "#4"}, + "east": {"uv": [5, 1, 9.5, 1.5], "texture": "#4"}, + "south": {"uv": [5, 0.5, 10, 1], "texture": "#4"}, + "west": {"uv": [5, 1.5, 9.5, 2], "texture": "#4"}, + "up": {"uv": [5, 4.5, 0, 0], "texture": "#4"}, + "down": {"uv": [5, 4.5, 0, 9], "texture": "#4"} + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel new file mode 100644 index 0000000..5351868 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.bbmodel @@ -0,0 +1 @@ +{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"uncrafter","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,16,16],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,16],"texture":1},"east":{"uv":[0,0,16,16],"texture":1},"south":{"uv":[0,0,16,16],"texture":1},"west":{"uv":[0,0,16,16],"texture":1},"up":{"uv":[0,0,16,16],"texture":2},"down":{"uv":[0,0,16,16],"texture":0}},"type":"cube","uuid":"ac9de27a-27bc-3953-347e-b633ca2f05d9"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,11,-0.5],"to":[11,12,16.5],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":270,"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"rotation":90,"texture":1},"west":{"uv":[6,11,11,12],"rotation":180,"texture":1},"up":{"uv":[6,11,11,12],"rotation":90,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"1dafc799-0573-2936-1311-5277bbe2652e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,5],"to":[16.5,5,11],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":180,"texture":1},"east":{"uv":[6,11,11,12],"rotation":270,"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"rotation":90,"texture":1},"up":{"uv":[6,11,11,12],"rotation":180,"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"2f4b6eed-62e5-6d7b-6707-516136a671e5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,11,5],"to":[16.5,12,11],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":180,"texture":1},"east":{"uv":[6,11,11,12],"rotation":270,"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"rotation":90,"texture":1},"up":{"uv":[6,11,11,12],"rotation":180,"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"b98f4fbb-737c-74a9-c960-584b01b39472"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,4],"to":[16.5,12,5],"autouv":0,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"9de6a778-9dd2-a194-cfc0-105d9bae615b"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,4,11],"to":[16.5,12,12],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"texture":1},"down":{"uv":[6,11,11,12],"texture":1}},"type":"cube","uuid":"374756cf-fb4a-8aba-5a77-76c655b5952e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[11,4,-0.5],"to":[12,12,16.5],"autouv":0,"color":2,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"rotation":270,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"e835d294-407d-2f80-4174-02eee646252f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,4,-0.5],"to":[11,5,16.5],"autouv":0,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"rotation":270,"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"rotation":90,"texture":1},"west":{"uv":[6,11,11,12],"rotation":180,"texture":1},"up":{"uv":[6,11,11,12],"rotation":90,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"1d8996ea-5e9b-79a1-e32b-ca8f20eda51c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,4,-0.5],"to":[5,12,16.5],"autouv":0,"color":8,"origin":[0,0,0],"faces":{"north":{"uv":[6,11,11,12],"texture":1},"east":{"uv":[6,11,11,12],"texture":1},"south":{"uv":[6,11,11,12],"texture":1},"west":{"uv":[6,11,11,12],"texture":1},"up":{"uv":[6,11,11,12],"rotation":270,"texture":1},"down":{"uv":[6,11,11,12],"rotation":90,"texture":1}},"type":"cube","uuid":"7d422c33-810a-d373-3d84-a13bb8f5cc87"},{"name":"grid","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[2,16,2],"to":[14,16.75,14],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[3,3,13,4],"texture":2},"east":{"uv":[3,3,13,4],"texture":2},"south":{"uv":[3,3,13,4],"texture":2},"west":{"uv":[3,3,13,4],"texture":2},"up":{"uv":[2,2,14,14],"texture":2},"down":{"uv":[0,0,12,12]}},"type":"cube","uuid":"32a37783-fda2-d727-cf9c-d99e2878a7e8"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[6,12,-0.5],"to":[10,13,16.5],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[6,3,10,4],"texture":1},"east":{"uv":[6,3,7,4],"texture":1},"south":{"uv":[6,3,10,4],"texture":1},"west":{"uv":[6,3,7,4],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[6,3,10,4],"texture":1}},"type":"cube","uuid":"46ecc3cc-7916-4bcd-28e2-eb941d684855"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[3,15,-0.5],"to":[13,16.5,16.5],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[3,0,13,2],"texture":2},"east":{"uv":[3,0,13,2],"texture":2},"south":{"uv":[3,0,13,2],"texture":2},"west":{"uv":[3,0,13,2],"texture":2},"up":{"uv":[3,0,13,2],"texture":2},"down":{"uv":[3,0,13,2],"texture":2}},"type":"cube","uuid":"172385de-76db-6ec1-a312-45a3690ec58d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[4,14,-0.5],"to":[12,15,16.5],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[4,1,12,2],"texture":1},"east":{"uv":[4,1,5,2],"texture":1},"south":{"uv":[4,1,12,2],"texture":1},"west":{"uv":[4,1,5,2],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[4,1,12,2],"texture":1}},"type":"cube","uuid":"a2c5a217-698e-37df-618c-e853252d2d01"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[5,13,-0.5],"to":[11,14,16.5],"autouv":0,"color":1,"origin":[0,0,0],"faces":{"north":{"uv":[5,2,11,3],"texture":1},"east":{"uv":[5,2,6,3],"texture":1},"south":{"uv":[5,2,11,3],"texture":1},"west":{"uv":[5,2,6,3],"texture":1},"up":{"uv":[0,0,8,16]},"down":{"uv":[5,2,11,3],"texture":1}},"type":"cube","uuid":"04c55b72-16de-230f-76a4-a4ae7a5a3ca2"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,12,6],"to":[16.5,13,10],"autouv":0,"color":7,"origin":[0,0,0],"faces":{"north":{"uv":[6,3,7,4],"texture":1},"east":{"uv":[6,3,10,4],"texture":1},"south":{"uv":[6,3,7,4],"texture":1},"west":{"uv":[6,3,10,4],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[6,3,10,4],"rotation":90,"texture":1}},"type":"cube","uuid":"dc42b1da-d91b-bc2b-115b-f250a445652c"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,15,3],"to":[16.5,16.5,13],"autouv":0,"color":9,"origin":[0,0,0],"faces":{"north":{"uv":[3,0,13,2],"texture":2},"east":{"uv":[3,0,13,2],"texture":2},"south":{"uv":[3,0,13,2],"texture":2},"west":{"uv":[3,0,13,2],"texture":2},"up":{"uv":[3,0,13,2],"rotation":270,"texture":2},"down":{"uv":[3,0,13,2],"rotation":90,"texture":2}},"type":"cube","uuid":"a408a185-b0f6-84f3-ecb1-793a2b11fbb5"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,14,4],"to":[16.5,15,12],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[4,1,5,2],"texture":1},"east":{"uv":[4,1,12,2],"texture":1},"south":{"uv":[4,1,5,2],"texture":1},"west":{"uv":[4,1,12,2],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[4,1,12,2],"rotation":90,"texture":1}},"type":"cube","uuid":"dbb7dbc7-b9db-0fcc-0582-442ea86f6b55"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[-0.5,13,5],"to":[16.5,14,11],"autouv":0,"color":6,"origin":[0,0,0],"faces":{"north":{"uv":[5,2,6,3],"texture":1},"east":{"uv":[5,2,11,3],"texture":1},"south":{"uv":[5,2,6,3],"texture":1},"west":{"uv":[5,2,11,3],"texture":1},"up":{"uv":[0,0,8,16],"rotation":270},"down":{"uv":[5,2,11,3],"rotation":90,"texture":1}},"type":"cube","uuid":"564a8245-c5cf-32cc-523c-a493d3c84175"}],"outliner":["ac9de27a-27bc-3953-347e-b633ca2f05d9",{"name":"connection_slots","origin":[0,0,0],"color":0,"uuid":"b714af95-2528-cdd1-2a58-be2ebce94bd9","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["1dafc799-0573-2936-1311-5277bbe2652e","2f4b6eed-62e5-6d7b-6707-516136a671e5","b98f4fbb-737c-74a9-c960-584b01b39472","9de6a778-9dd2-a194-cfc0-105d9bae615b","374756cf-fb4a-8aba-5a77-76c655b5952e","e835d294-407d-2f80-4174-02eee646252f","1d8996ea-5e9b-79a1-e32b-ca8f20eda51c","7d422c33-810a-d373-3d84-a13bb8f5cc87"]},"32a37783-fda2-d727-cf9c-d99e2878a7e8",{"name":"group","origin":[0,0,0],"color":0,"uuid":"2cd47851-5d22-a7c5-c742-179ec7b7ffe8","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["46ecc3cc-7916-4bcd-28e2-eb941d684855","172385de-76db-6ec1-a312-45a3690ec58d","a2c5a217-698e-37df-618c-e853252d2d01","04c55b72-16de-230f-76a4-a4ae7a5a3ca2"]},{"name":"group","origin":[0,0,0],"color":0,"uuid":"66b65636-382c-d904-0f28-0005d296751a","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["dc42b1da-d91b-bc2b-115b-f250a445652c","a408a185-b0f6-84f3-ecb1-793a2b11fbb5","dbb7dbc7-b9db-0fcc-0582-442ea86f6b55","564a8245-c5cf-32cc-523c-a493d3c84175"]}],"textures":[{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png","name":"uncrafter_bottom.png","folder":"block","namespace":"ariasessentials","id":"0","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"edabc1e0-d543-629f-6193-ef1589f8cd5a","relative_path":"../../../../textures/block/uncrafter_bottom.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAGvSURBVDhPXVO7TgJREJ1FFtzloaJAIBpDpyGxsaGlsvEzNNHC2Jj4bf4BjY2JiY0xqMHwlofgsguYM+RsLk6z93JnzpwzZ7CqF5fLaTQqiC3Pk89kSs+56URi87m4gS+1fFF/O+m25Wk3K19uUiqthtSTabHKN7fL5509qTbeNSk986TpJtbAevFNfUNhYTLWLwJnq3B3v8Ql4/1Kyp/pA2JkxwSFSC73O+EZjVqOG94tSgAdIoMeo5YraqfD8VBBwZbdkR8yQAJATttN8SMRGcTjeqdeAlEGQFBjVa6uVQKSIcPUCyaUwjc2whegOkRoNztQ89F3TxK+Lx3HEScIlDr0749HYi8W8pjNrwDYFQkooq24o/BlOxM6ACal4UBlwnKdAXSdfbypbjBBkAUKzEB3BHIhb20PQO+/HC4MmpzXX8WdBzLZWC3ej21LaKM5LFjFhaGFkGJuLBgg1AXQBuXjfldpPRyUFABBCQTFjDATuqIAtBD7DxkIDNa0DDm4I8wtDV3ggrAjAZCMuQCALtFO5IQMTLosMLcO7+aqA3htBrSK2s0/EaWQHRvg/gfDmTZgal/FbwAAAABJRU5ErkJggg=="},{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png","name":"uncrafter_side.png","folder":"block","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"e4e3cf2c-1109-a760-fc62-0831300ff7a0","relative_path":"../../../../textures/block/uncrafter_side.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAAHvSURBVDhPfVNLLwNRFP5Gqx5VjEcrERuPtvFMEKIVQkJEbLHxIyy6ZcHWwk7sJcLaQiLxWGCjEkKZekSCRpuGKmXVjHtu515TwZdM5s69c77znXO+q2B2XofA3Ixc/ruYnZfHChE4bzWo6TReLBYMrKzg8o9oL9vfnQ7I02hxCRTXdECnBZGURh8R7hnEpKFEEFEgYc3I7D7c5v8RFF9vt45iFbmxCPZGx0GHRRYr0ptbWTrsoyO4LqvgSrWGRriSr+AK+jtb9QtvK5SKKpScBxHe2pGBbcbqxETlnJpCrNbDFXMFHRMT+r3NhmrtFBH/MKKLCyisAXJy2WPLfuIHABHwQJaQv6kHevyJ1+9QKxFcX0e+ywj8QfJ8BLD/URc+w427+VtB0NvCayr9TEFbXoJNNWU2kSROAffQAF6bOkBJuQImSVftDiQK7FyFtroKq/2HfIMkSWNhk6D6s0qgbkqwEf5WP+2932Z6QMFSQfvIkH7c1fftA2MKv5F83Gd6IHxDRLwEGgv1gFhjzIn/wmRj2QNiMpdhdpowjHh7rkLcSAJ8jPRBDaS7QGoI/hCzT14B9uvcUh0lqn+4Q7y8kjedOzHrNhq0ostESki4qmVGodS3vYGDwbEMgScawUvqTV4mIZeIhCLaI5hLpb0vjgfXWl4BbX4AAAAASUVORK5CYII="},{"path":"/run/media/Backups/repos/ariasessentials/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png","name":"uncrafter.png","folder":"block","namespace":"ariasessentials","id":"2","width":16,"height":512,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":20,"frame_order_type":"loop","frame_order":"","frame_interpolate":true,"visible":true,"internal":true,"saved":true,"uuid":"0b952e7d-256f-d0eb-1170-89403985b747","relative_path":"../../../../textures/block/uncrafter.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAIACAYAAACLuuzTAAAAAXNSR0IArs4c6QAAAARzQklUCAgICHwIZIgAAANNSURBVHhe7Z0xTsMwFIbNQZi5A2JEYmFj4DQwwGkY2FiQGBF3YOYg0DRtCWlsP7/nENv5KiFVbfhTx/4/Pz/byYm7f/x2+9fD3eFt8M394+Hrk63Ax3v/wdurTODyqj/u/MIdBG6l/7w7xVMnshVwbluE283fl+z87nRz3NPu2COB7svu1YmF3s8nICkFRehrp6Ra2HlB35SzmMlsZ7MAPPhDJDNQsvLg7LqX+3w5xpvITCqBrEWohcrwgPjAHUco5fJgbO1kHogF4IHkCvTH/Ia6xAeMFyaAImlK4lh5aGGxnYdIUwlkLYLv14ivgUogvQjEB8QHxAedb+bN4qiItADS4AE8gAfz8MDHAHGIYxYgPmB+ITanMJx3EA2+Vamw9JY4mmMxe8EssMoiEB+0GB+E8ukiHpgFVmmmBpAGD1rngWquLTTcFQEFHjhnjlDMAum1AA/WxIOSR64NdK4NFAEewIOJfOICPVPATKq5Nl9cJGZieucKDzKZyby80CzQ1vpEs53NAlnNpMpokgKR1MF4xTTxQSakbYCiX/Sde/+C2c5mAUlbDK7FMdvZLJC1CLVkceABPKhqvDCOFbxTpmXxoJYQBx7AA3gwz3ok8yYQs0B6iAMP4EGRPDB7wSyQbqbRsM/8C8wC6UWABy3ywLzw3SyQ3hIbMFMDRYAHrfNANVnn65n+b7LO3DeaBVaJNHiwJh6Ik3GYSUKDuW9vtEAtwIOWeeBr1Ps9T9H9TAj4uVDBRZRA7e+sLzxokgc34Zbw9Rzr2hBwp/VfA3jAfufhfme696q79/14QV2N8AAe+O5/MGwb4lDXB5eowPBsU806KmD2AgISGrBeeXuVuN/6Qnf6Ts5oqvtGeAAPHM9fiD5zoWsl4t45drMlb0JS0haD+xew8++95dVMTK8F8olN5hN3DUFt5wVmujyLeaaGOUlIyy4wHgoVPEkDD8gfxBiQZKaY2PzxgfoXmJE2FPAZq/AQBx7Ag5iB4EHvkuiYKd1MghBHldVlvBCpi6N04P548get5Q9ieItG62qBbDxQT9JMhThJQEkvAvkD8gfFP38hFPpXxoMpOpVUBHgAD+BB14/O+3ymWpAGD+ABPIAH/cgiw6NIl36e6w/NB6pXl3BUBQAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"scale":[0.5,0.5,0.5]},"thirdperson_lefthand":{"scale":[0.5,0.5,0.5]},"firstperson_righthand":{"scale":[0.5,0.5,0.5]},"firstperson_lefthand":{"scale":[0.5,0.5,0.5]},"ground":{"scale":[0.25,0.25,0.25]},"gui":{"rotation":[59,-39,-3],"scale":[0.5,0.5,0.5]},"head":{"scale":[0.95,0.95,0.95]},"fixed":{"rotation":[-90,0,0],"scale":[0.5,0.5,0.5]}}} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json new file mode 100644 index 0000000..7d70c9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/custommodel/uncrafter.json @@ -0,0 +1,278 @@ +{ + "credit": "Made with Blockbench", + "textures": { + "0": "ariasessentials:block/uncrafter_bottom", + "1": "ariasessentials:block/uncrafter_side", + "2": "ariasessentials:block/uncrafter", + "particle": "ariasessentials:block/uncrafter_side" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "up": {"uv": [0, 0, 16, 16], "texture": "#2"}, + "down": {"uv": [0, 0, 16, 16], "texture": "#0"} + } + }, + { + "from": [5, 11, -0.5], + "to": [11, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 5], + "to": [16.5, 5, 11], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 11, 5], + "to": [16.5, 12, 11], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 4], + "to": [16.5, 12, 5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [-0.5, 4, 11], + "to": [16.5, 12, 12], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "texture": "#1"} + } + }, + { + "from": [11, 4, -0.5], + "to": [12, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [5, 4, -0.5], + "to": [11, 5, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "rotation": 180, "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [4, 4, -0.5], + "to": [5, 12, 16.5], + "faces": { + "north": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "east": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "south": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "west": {"uv": [6, 11, 11, 12], "texture": "#1"}, + "up": {"uv": [6, 11, 11, 12], "rotation": 270, "texture": "#1"}, + "down": {"uv": [6, 11, 11, 12], "rotation": 90, "texture": "#1"} + } + }, + { + "name": "grid", + "from": [2, 16, 2], + "to": [14, 16.75, 14], + "faces": { + "north": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "east": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "south": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "west": {"uv": [3, 3, 13, 4], "texture": "#2"}, + "up": {"uv": [2, 2, 14, 14], "texture": "#2"}, + "down": {"uv": [0, 0, 12, 12], "texture": "#missing"} + } + }, + { + "from": [6, 12, -0.5], + "to": [10, 13, 16.5], + "faces": { + "north": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "east": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "south": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "west": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [6, 3, 10, 4], "texture": "#1"} + } + }, + { + "from": [3, 15, -0.5], + "to": [13, 16.5, 16.5], + "faces": { + "north": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "east": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "south": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "west": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "up": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "down": {"uv": [3, 0, 13, 2], "texture": "#2"} + } + }, + { + "from": [4, 14, -0.5], + "to": [12, 15, 16.5], + "faces": { + "north": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "east": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "south": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "west": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [4, 1, 12, 2], "texture": "#1"} + } + }, + { + "from": [5, 13, -0.5], + "to": [11, 14, 16.5], + "faces": { + "north": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "east": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "south": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "west": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "texture": "#missing"}, + "down": {"uv": [5, 2, 11, 3], "texture": "#1"} + } + }, + { + "from": [-0.5, 12, 6], + "to": [16.5, 13, 10], + "faces": { + "north": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "east": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "south": {"uv": [6, 3, 7, 4], "texture": "#1"}, + "west": {"uv": [6, 3, 10, 4], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [6, 3, 10, 4], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 15, 3], + "to": [16.5, 16.5, 13], + "faces": { + "north": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "east": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "south": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "west": {"uv": [3, 0, 13, 2], "texture": "#2"}, + "up": {"uv": [3, 0, 13, 2], "rotation": 270, "texture": "#2"}, + "down": {"uv": [3, 0, 13, 2], "rotation": 90, "texture": "#2"} + } + }, + { + "from": [-0.5, 14, 4], + "to": [16.5, 15, 12], + "faces": { + "north": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "east": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "south": {"uv": [4, 1, 5, 2], "texture": "#1"}, + "west": {"uv": [4, 1, 12, 2], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [4, 1, 12, 2], "rotation": 90, "texture": "#1"} + } + }, + { + "from": [-0.5, 13, 5], + "to": [16.5, 14, 11], + "faces": { + "north": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "east": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "south": {"uv": [5, 2, 6, 3], "texture": "#1"}, + "west": {"uv": [5, 2, 11, 3], "texture": "#1"}, + "up": {"uv": [0, 0, 8, 16], "rotation": 270, "texture": "#missing"}, + "down": {"uv": [5, 2, 11, 3], "rotation": 90, "texture": "#1"} + } + } + ], + "display": { + "thirdperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "thirdperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_righthand": { + "scale": [0.5, 0.5, 0.5] + }, + "firstperson_lefthand": { + "scale": [0.5, 0.5, 0.5] + }, + "ground": { + "scale": [0.25, 0.25, 0.25] + }, + "gui": { + "rotation": [59, -39, -3], + "scale": [0.5, 0.5, 0.5] + }, + "head": { + "scale": [0.95, 0.95, 0.95] + }, + "fixed": { + "rotation": [-90, 0, 0], + "scale": [0.5, 0.5, 0.5] + } + }, + "groups": [ + 0, + { + "name": "connection_slots", + "origin": [0, 0, 0], + "color": 0, + "children": [1, 2, 3, 4, 5, 6, 7, 8] + }, + 9, + { + "name": "group", + "origin": [0, 0, 0], + "color": 0, + "children": [10, 11, 12, 13] + }, + { + "name": "group", + "origin": [0, 0, 0], + "color": 0, + "children": [14, 15, 16, 17] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan.json b/src/main/resources/assets/ariasessentials/models/block/cyan.json new file mode 100644 index 0000000..4c841a8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_stairs.json b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs.json new file mode 100644 index 0000000..d54fd27 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json new file mode 100644 index 0000000..8f551bf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json new file mode 100644 index 0000000..9ecf19c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/cyan", + "side": "ariasessentials:block/thresholds/cyan", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_tile.json b/src/main/resources/assets/ariasessentials/models/block/cyan_tile.json new file mode 100644 index 0000000..8371b93 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_tile.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/top", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/cyan_tile_w_circle", + "side": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_tile_br.json b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_br.json new file mode 100644 index 0000000..ce0032b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_br.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/cyan_tile_transition", + "side": "ariasessentials:block/thresholds/cyan" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json new file mode 100644 index 0000000..9466361 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_floor_to_wall", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json new file mode 100644 index 0000000..206347a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_wall", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json new file mode 100644 index 0000000..1e45786 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/cyan_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/cyan_wall2", + "top": "ariasessentials:block/thresholds/cyan" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_light.json new file mode 100644 index 0000000..06a6e23 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile.json new file mode 100644 index 0000000..9cd3bf3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json new file mode 100644 index 0000000..29ceb08 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json new file mode 100644 index 0000000..41e6017 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json new file mode 100644 index 0000000..a12ed67 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json new file mode 100644 index 0000000..c794fa9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json new file mode 100644 index 0000000..61019c2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dark_pool_tile", + "side": "ariasessentials:block/dark_pool_tile", + "top": "ariasessentials:block/dark_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_bed.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_bed.json new file mode 100644 index 0000000..6577c90 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_bed.json @@ -0,0 +1,7 @@ +{ + "variants": { + "": { + "model": "minecraft:block/bed" + } + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_carpet.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_carpet.json new file mode 100644 index 0000000..3567748 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_carpet.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/carpet", + "textures": { + "wool": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json new file mode 100644 index 0000000..c35d870 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_shulker_box.json @@ -0,0 +1,5 @@ +{ + "textures": { + "particle": "ariasessentials:block/dark_red_shulker_box" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dark_red_wool.json b/src/main/resources/assets/ariasessentials/models/block/dark_red_wool.json new file mode 100644 index 0000000..a1c3b22 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dark_red_wool.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..fcd2a82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/deepslate_eternium_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/deepslate_eternium_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/deprecated.json b/src/main/resources/assets/ariasessentials/models/block/deprecated.json new file mode 100644 index 0000000..8970a27 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/deprecated.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/deprecated" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_light.json new file mode 100644 index 0000000..6b2dacd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json new file mode 100644 index 0000000..293a975 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..9aa4f75 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json new file mode 100644 index 0000000..45189ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..74bff36 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json new file mode 100644 index 0000000..191a772 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json new file mode 100644 index 0000000..785db09 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_blue_pool_tile", + "side": "ariasessentials:block/dirty_blue_pool_tile", + "top": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json new file mode 100644 index 0000000..8530b2b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json new file mode 100644 index 0000000..79e39ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json new file mode 100644 index 0000000..15b5e7b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..0675885 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_blue_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_blue_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_light.json new file mode 100644 index 0000000..5db84f0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_green_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json new file mode 100644 index 0000000..57508a9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..5344b8e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json new file mode 100644 index 0000000..d19fdd7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..dec0a2b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json new file mode 100644 index 0000000..9f7a4f5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json new file mode 100644 index 0000000..4abc9a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_green_pool_tile", + "side": "ariasessentials:block/dirty_green_pool_tile", + "top": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json new file mode 100644 index 0000000..ea0ec22 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json new file mode 100644 index 0000000..f0ee243 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json new file mode 100644 index 0000000..05355a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..c809e63 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_green_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_light.json new file mode 100644 index 0000000..de379b2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile.json new file mode 100644 index 0000000..f5b2f5d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json new file mode 100644 index 0000000..31b5751 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json new file mode 100644 index 0000000..98fc188 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..68ee419 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json new file mode 100644 index 0000000..146e9ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json new file mode 100644 index 0000000..f3e00fc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_pool_tile", + "side": "ariasessentials:block/dirty_pool_tile", + "top": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json new file mode 100644 index 0000000..0eaa596 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json new file mode 100644 index 0000000..c6152f9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json new file mode 100644 index 0000000..9129b3c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..66ada0b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_light.json new file mode 100644 index 0000000..082b731 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json new file mode 100644 index 0000000..7adfed2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..303cbec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json new file mode 100644 index 0000000..d16f47b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..8db8504 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..62ddc44 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..5ba1eac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/dirty_red_pool_tile", + "side": "ariasessentials:block/dirty_red_pool_tile", + "top": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json new file mode 100644 index 0000000..0f74614 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json new file mode 100644 index 0000000..f5e43f6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json new file mode 100644 index 0000000..aa025b4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..2ec7d04 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/dirty_red_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/dirty_red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/eternium_block.json b/src/main/resources/assets/ariasessentials/models/block/eternium_block.json new file mode 100644 index 0000000..ec2aeb6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/eternium_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/eternium_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/eternium_ore_block.json new file mode 100644 index 0000000..4d4e3fe --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/eternium_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/eternium_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/cube.json b/src/main/resources/assets/ariasessentials/models/block/fb/cube.json new file mode 100644 index 0000000..c3d3147 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/cube.json @@ -0,0 +1,11 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "north": "#all", + "south": "#all", + "west": "#all", + "east": "#all", + "up": "#all", + "down": "#all" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/fullbright.json b/src/main/resources/assets/ariasessentials/models/block/fb/fullbright.json new file mode 100644 index 0000000..a86d0c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/fullbright.json @@ -0,0 +1,22 @@ +{ + "parent": "block/block", + "ambientocclusion" : false, + "textures": { + "particle": "#up" + }, + "elements": [ + { + "from": [ 0, 0, 0 ], + "to": [ 16, 16, 16 ], + "shade": false, + "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" } + } + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/rotatable.json b/src/main/resources/assets/ariasessentials/models/block/fb/rotatable.json new file mode 100644 index 0000000..907f570 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/rotatable.json @@ -0,0 +1,12 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/sided.json b/src/main/resources/assets/ariasessentials/models/block/fb/sided.json new file mode 100644 index 0000000..52fda95 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/sided.json @@ -0,0 +1,12 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "particle": "#side", + "down": "#top", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/fb/top.json b/src/main/resources/assets/ariasessentials/models/block/fb/top.json new file mode 100644 index 0000000..902d85d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/fb/top.json @@ -0,0 +1,11 @@ +{ + "parent": "ariasessentials:block/fb/fullbright", + "textures": { + "north": "#side", + "south": "#side", + "west": "#side", + "east": "#side", + "up": "#top", + "down": "#side" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_blue_pool_light.json new file mode 100644 index 0000000..ee08e8d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_blue_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_blue_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_green_pool_light.json new file mode 100644 index 0000000..7d27681 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_green_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_green_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_pool_light.json new file mode 100644 index 0000000..6f9d8e7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/filthy_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/filthy_red_pool_light.json new file mode 100644 index 0000000..7604167 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/filthy_red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/filthy_red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_light.json new file mode 100644 index 0000000..7d9622b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/green_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile.json new file mode 100644 index 0000000..a3f17f1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json new file mode 100644 index 0000000..9451373 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json new file mode 100644 index 0000000..f28596f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json new file mode 100644 index 0000000..c9378c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json new file mode 100644 index 0000000..9d8df48 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json new file mode 100644 index 0000000..2bd2431 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/green_pool_tile", + "side": "ariasessentials:block/green_pool_tile", + "top": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json new file mode 100644 index 0000000..6b9ffba --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json new file mode 100644 index 0000000..4fc4b1b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json new file mode 100644 index 0000000..63b766d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..90af621 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/green_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/green_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json new file mode 100644 index 0000000..8907215 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json @@ -0,0 +1,274 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "texture_size": [64, 64], + "textures": { + "0": "ariasessentials:block/scrubber/scrubber_top", + "1": "ariasessentials:block/scrubber/scrubber_old_internal_cube", + "particle": "ariasessentials:block/scrubber/scrubber_old_internal_cube" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [2, 2, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 0, 14], + "to": [2, 2, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 14, 0], + "to": [2, 16, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 14, 14], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "texture": "#0"} + } + }, + { + "from": [0, 2, 0], + "to": [1, 14, 1], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 2, 15], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "texture": "#0"} + } + }, + { + "from": [0, 0, 2], + "to": [1, 1, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "texture": "#0"} + } + }, + { + "from": [0, 15, 2], + "to": [1, 16, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "texture": "#0"} + } + }, + { + "from": [14, 0, 14], + "to": [16, 2, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 0, 0], + "to": [16, 2, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 14, 14], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [14, 14, 0], + "to": [16, 16, 2], + "faces": { + "north": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "east": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "south": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "west": {"uv": [0, 0, 2, 2], "texture": "#0"}, + "up": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 2, 2], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 2, 15], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 0, 15], + "to": [14, 1, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 15, 15], + "to": [14, 16, 16], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 15, 0], + "to": [14, 16, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [2, 0, 0], + "to": [14, 1, 1], + "faces": { + "north": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 12, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 2, 0], + "to": [16, 14, 1], + "faces": { + "north": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "east": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "west": {"uv": [0, 0, 1, 8], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 1], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 0, 2], + "to": [16, 1, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} + } + }, + { + "from": [15, 15, 2], + "to": [16, 16, 14], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "east": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "south": {"uv": [0, 0, 1, 1], "texture": "#0"}, + "west": {"uv": [0, 0, 12, 1], "texture": "#0"}, + "up": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"}, + "down": {"uv": [0, 0, 1, 12], "rotation": 180, "texture": "#0"} + } + }, + { + "name": "internal", + "from": [2, 2, 2], + "to": [14, 14, 14], + "faces": { + "north": {"uv": [0, 0, 3, 3], "texture": "#1"}, + "east": {"uv": [0, 3, 3, 6], "texture": "#1"}, + "south": {"uv": [3, 0, 6, 3], "texture": "#1"}, + "west": {"uv": [3, 3, 6, 6], "texture": "#1"}, + "up": {"uv": [3, 9, 0, 6], "texture": "#1"}, + "down": {"uv": [9, 0, 6, 3], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "scrubber", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19] + }, + 20 + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json.old b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json.old new file mode 100644 index 0000000..39edd04 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/item_scrubber.json.old @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "down": "ariasessentials:block/scrubber/scrubber_bottom", + "up": "ariasessentials:block/scrubber/scrubber_top", + "south": "ariasessentials:block/scrubber/scrubber_front", + "west": "ariasessentials:block/scrubber/scrubber_left", + "north": "ariasessentials:block/scrubber/scrubber_back", + "east": "ariasessentials:block/scrubber/scrubber_right" + } + } + \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json b/src/main/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json new file mode 100644 index 0000000..62e220a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/layered_compressed_obsidian_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/layered_compressed_obsidian_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/logicgates/redstone_tflipflop.bbmodel b/src/main/resources/assets/ariasessentials/models/block/logicgates/redstone_tflipflop.bbmodel deleted file mode 100644 index 43b17fc..0000000 --- a/src/main/resources/assets/ariasessentials/models/block/logicgates/redstone_tflipflop.bbmodel +++ /dev/null @@ -1 +0,0 @@ -{"meta":{"format_version":"4.9","model_format":"java_block","box_uv":false},"name":"tflipflop_a3","parent":"","ambientocclusion":true,"front_gui_light":false,"visible_box":[1,1,0],"variable_placeholders":"","variable_placeholder_buttons":[],"unhandled_root_fields":{},"resolution":{"width":16,"height":16},"elements":[{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,0.25,16],"autouv":0,"color":4,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,16],"texture":0},"east":{"uv":[0,0,16,16],"texture":0},"south":{"uv":[0,0,16,16],"texture":0},"west":{"uv":[0,0,16,16],"texture":0},"up":{"uv":[0,0,16,16],"rotation":270,"texture":0},"down":{"uv":[16,0,0,16],"rotation":90,"texture":0}},"type":"cube","uuid":"6ee87a67-7b5b-776a-921d-31996e4fc4b1"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0.25,0.25,0.25],"to":[15.75,0.5,15.75],"autouv":1,"color":3,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,15.5,0.25],"texture":0},"east":{"uv":[0,0,15.5,0.25],"texture":0},"south":{"uv":[0,0,15.5,0.25],"texture":0},"west":{"uv":[0,0,15.5,0.25],"texture":0},"up":{"uv":[0,0,15.5,15.5],"rotation":270,"texture":1},"down":{"uv":[0,0,15.5,15.5],"rotation":90,"texture":null}},"type":"cube","uuid":"70cdfb63-6983-46ac-c64f-5d139ee02b56"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[0,0,0],"to":[16,1,16],"autouv":1,"color":0,"visibility":false,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,16,1]},"east":{"uv":[0,0,16,1]},"south":{"uv":[0,0,16,1]},"west":{"uv":[0,0,16,1]},"up":{"uv":[0,0,16,16]},"down":{"uv":[0,0,16,16]}},"type":"cube","uuid":"1f338881-e5fc-53c8-fedb-910930605af6"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,0.5,14],"to":[9.2,3,14.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6,6,9.75,14.5],"texture":3},"east":{"uv":[6,6,9.75,14.5],"texture":3},"south":{"uv":[6,6,9.75,14.5],"texture":3},"west":{"uv":[6,6,9.75,14.5],"texture":3},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"50950f94-42c2-35ab-b6fb-fedb87b2395d"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.1,2.9999999999999996,14],"to":[9.549999999999999,3.7499999999999996,14.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[4,0,11.75,5.5],"texture":3},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[4,0,11.75,5.5],"texture":4},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"0063735d-5cf6-9c67-3f27-bed7e2727e0f"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,2.9999999999999996,13.65],"to":[9.2,3.7499999999999996,15.1],"autouv":0,"color":0,"origin":[8.825,3.375,14.375],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[4,0,11.75,5.5],"texture":4},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[4,0,11.75,5.5],"texture":3},"up":{"uv":[0,0,0,0],"rotation":270,"texture":null},"down":{"uv":[0,0,0,0],"rotation":90,"texture":null}},"type":"cube","uuid":"58793944-9320-7334-09bf-db1b54cb9ee3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,3.475,14],"to":[9.2,3.475,14.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[6,3,10,6],"texture":4},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"99632aba-4240-459b-2f50-b493b19d736a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,2.9999999999999996,3.6500000000000012],"to":[9.2,3.7499999999999996,5.100000000000001],"autouv":0,"color":0,"origin":[8.825,3.375,14.375],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[4,0,11.75,5.5],"texture":4},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[4,0,11.75,5.5],"texture":3},"up":{"uv":[0,0,0,0],"rotation":270,"texture":null},"down":{"uv":[0,0,0,0],"rotation":90,"texture":null}},"type":"cube","uuid":"72c4438f-97e0-daf7-bdeb-2d407d7e10f0"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,3.475,4],"to":[9.2,3.475,4.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[6,3,10,6],"texture":4},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"3c957cbf-f24a-3cea-f5ec-adf23ca7b13a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.1,2.9999999999999996,4],"to":[9.549999999999999,3.7499999999999996,4.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[4,0,11.75,5.5],"texture":3},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[4,0,11.75,5.5],"texture":4},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"9988af10-7d03-de99-6ce1-848daf21060e"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,0.5,4],"to":[9.2,3,4.75],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6,6,9.75,14.5],"texture":3},"east":{"uv":[6,6,9.75,14.5],"texture":3},"south":{"uv":[6,6,9.75,14.5],"texture":3},"west":{"uv":[6,6,9.75,14.5],"texture":3},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"0cb29969-f4dc-85fc-d05d-7e99798645e3"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,0.5,0.7999999999999992],"to":[9.2,3,1.5500000000000012],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[6,6,9.75,14.5],"texture":3},"east":{"uv":[6,6,9.75,14.5],"texture":3},"south":{"uv":[6,6,9.75,14.5],"texture":3},"west":{"uv":[6,6,9.75,14.5],"texture":3},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"080f4854-60e7-f6e0-5338-3ea9a130e7bc"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.1,2.9999999999999996,0.7999999999999992],"to":[9.549999999999999,3.7499999999999996,1.5500000000000012],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[4,0,11.75,5.5],"texture":4},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[4,0,11.75,5.5],"texture":4},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[0,0,0,0],"texture":null},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"e1db51fc-226b-674e-d348-d25f4a1aa922"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,3.475,0.7999999999999992],"to":[9.2,3.475,1.5500000000000012],"autouv":0,"color":0,"origin":[0,0,0],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[0,0,0,0],"texture":null},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[0,0,0,0],"texture":null},"up":{"uv":[6,3,10,6],"texture":4},"down":{"uv":[0,0,0,0],"texture":null}},"type":"cube","uuid":"16a39391-83a7-8925-71ae-966f1cc2621a"},{"name":"cube","box_uv":false,"rescale":false,"locked":false,"render_order":"default","allow_mirror_modeling":true,"from":[8.45,2.9999999999999996,0.4500000000000002],"to":[9.2,3.7499999999999996,1.9000000000000035],"autouv":0,"color":0,"origin":[8.825,3.375,14.375],"faces":{"north":{"uv":[0,0,0,0],"texture":null},"east":{"uv":[4,0,11.75,5.5],"texture":4},"south":{"uv":[0,0,0,0],"texture":null},"west":{"uv":[4,0,11.75,5.5],"texture":4},"up":{"uv":[0,0,0,0],"rotation":270,"texture":null},"down":{"uv":[0,0,0,0],"rotation":90,"texture":null}},"type":"cube","uuid":"3029845f-7d2a-b01b-32fd-6cff43f268cf"}],"outliner":[{"name":"base","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"08890b43-7b79-31ac-b4ae-af59395020c5","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["70cdfb63-6983-46ac-c64f-5d139ee02b56","6ee87a67-7b5b-776a-921d-31996e4fc4b1"]},{"name":"input","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"fce1f3ca-f703-4418-f950-f2fddb1d35d7","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["50950f94-42c2-35ab-b6fb-fedb87b2395d","0063735d-5cf6-9c67-3f27-bed7e2727e0f","99632aba-4240-459b-2f50-b493b19d736a","58793944-9320-7334-09bf-db1b54cb9ee3"]},{"name":"state","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"8fd3a6eb-cf3b-05b3-e33b-76c89aaff656","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["0cb29969-f4dc-85fc-d05d-7e99798645e3","9988af10-7d03-de99-6ce1-848daf21060e","3c957cbf-f24a-3cea-f5ec-adf23ca7b13a","72c4438f-97e0-daf7-bdeb-2d407d7e10f0"]},{"name":"state","origin":[0,0,0],"color":0,"nbt":"{}","uuid":"3e88a852-6489-cc81-d9ff-d46768d979b4","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":true,"autouv":0,"children":["080f4854-60e7-f6e0-5338-3ea9a130e7bc","e1db51fc-226b-674e-d348-d25f4a1aa922","16a39391-83a7-8925-71ae-966f1cc2621a","3029845f-7d2a-b01b-32fd-6cff43f268cf"]},{"name":"VoxelShapes","origin":[8,8,8],"color":0,"nbt":"{}","uuid":"cabc1e95-9318-0ad0-037a-7acb1f6d1fa4","export":true,"mirror_uv":false,"isOpen":true,"locked":false,"visibility":false,"autouv":0,"children":["1f338881-e5fc-53c8-fedb-910930605af6"]}],"textures":[{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png","name":"logic_gate.png","folder":"block/logicgates","namespace":"ariasessentials","id":"0","width":16,"height":16,"uv_width":32,"uv_height":32,"particle":true,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"fc146ff8-eb63-70f5-b4c1-f6e9c0a3d522","relative_path":"../../../../textures/block/logicgates/logic_gate.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAQRJREFUOE91k9uKhTAMRRv1q31QBFFEP1ntsDOzJCfjKQTb2qzuXGrjONau60rbtoWv5k3TFEattciu6yrneT6mtU3TVOUAQI6am5mbRgYAcsA8z1VOMilgDkDOGvd9u0mBHDFblsUBckA68rUHgBAEwVlz27atchsg1gAIARURYvu+u0YdBkDyvgGiGjuO4zfIUv5lXkDdFvOQ1XwAYtZRhUPMRYQ4gJ9P4f9KlxVQ0lhazwHENwUK4W1wqVchK2CNAsJ5A9m6ro+CGHdsJJTlr59XJ0YFlI6y6l/si6jG9/UWMuDNIffJc2YYhg9A7EZamr38ThzS970DiI+XmEH5lQL7AYuQKCQQq/dmAAAAAElFTkSuQmCC"},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png","name":"tflipflop.png","folder":"block/logicgates","namespace":"ariasessentials","id":"1","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"ad2c5c62-9aaf-8c8e-b419-d8a21cfc2b74","relative_path":"../../../../textures/block/logicgates/tflipflop.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAWtJREFUOE91kz1qw0AQhWdlVTmKEbh3nb/GuPFNbLBxISEQsmXpKDIGNwkktXujY6RPZWnDm+SJ1SZZGPZv5tu3s7MmSRIbhqGMRiNhj3EQBMJmrRVY27Zyu916w9ykaWoRQAACMTbGqKH5AIIUkGWZRRAMCjgmAMFoXdepQQECaSbPcwUggNIpH2sE8AqAMBhjUxSF5WkEcU4Ar0AVLsSUZaka4UwAk/cfwFVjqqr6vqSIAuq6lsViodIxx2luHnw1AwBOPB6Pcne5yHNVqaqX5VKeylIh1+u1f1oMxuOxKOB1tdINOJ5OJwU8Hg6qAHsPRSFv67V8TCYDQBRFojmgLDh9Tqcyn881AO1+v5f3zUb7pml+A/AKvCN2z+ezzGazPifIAZM8iP6ZmN1u1yugI4BuIbEi/V79UYmuAj4dn9WF/QXSv+AD3EKiKr9Oep84jgcAtxpZ0lzz/4lCttutAiiPP9EH+b+UsC+heB6jdMm9ewAAAABJRU5ErkJggg=="},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/locked_bar.png","name":"locked_bar.png","folder":"block/logicgates","namespace":"ariasessentials","id":"2","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"b7624b75-7c1f-ec24-cb46-69865ce1f1d9","relative_path":"../../../../textures/block/logicgates/locked_bar.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAElJREFUOE9jVFdX/89AANy8eZMRlxJGqhigY+XLcOXYZgZ8NuF1AVUMWDu/B6c/8QUROAxALhg1YCDDgFAyJiRPVtwjGzoMDAAAj+cyEWdOocgAAAAASUVORK5CYII="},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png","name":"torch_off.png","folder":"block/logicgates","namespace":"ariasessentials","id":"3","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"e424e05b-ce6b-2b7c-d1b3-9ecfcecf09a6","relative_path":"../../../../textures/block/logicgates/torch_off.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAKFJREFUOE/d070OQUEUBOCZ4yE0EsVNqNVK0Sg8KqKj1XoAIQqFxjswMndV/uLkdrbbZM+XM5Ms0fCw4Ty+AXrC3779Z2DQDjkfIVDA9lJfX87HDoadAkBGgM35lgNG3RDJGggA69M1B0yqAngqBCyPSWDaCwUIL+EOZvs00HqUWDqY5wEvXoYdZJEG+g/AEQzskhHGFSUQYYDE6pAEfv2ld1SuLxFu9BJNAAAAAElFTkSuQmCC"},{"path":"/media/tara/Data/DevEnv/Minecraft/Mods/Arias-Essentials/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png","name":"torch_on.png","folder":"block/logicgates","namespace":"ariasessentials","id":"4","width":16,"height":16,"uv_width":16,"uv_height":16,"particle":false,"layers_enabled":false,"sync_to_project":"","render_mode":"default","render_sides":"auto","frame_time":1,"frame_order_type":"loop","frame_order":"","frame_interpolate":false,"visible":true,"internal":true,"saved":true,"uuid":"64e004b0-acdb-af16-1327-e8ed2a4c1558","relative_path":"../../../../textures/block/logicgates/torch_on.png","source":"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAQhJREFUOE+Vk7FKBDEQhr+JbAwWFoLYCBYHWltbio2FzyLX6fvYeoedtrY+gCgWFjaHreua9XZkNnuCt7dgpgkJM1/+/w8RBuoCdNN7PoCtGBmDrGpdeWiNY+91G/IBl6BlCJTOEYDP7tqyaaCquFpS0lNwHoLazC+gKKCuyQbM1h2x8MxRiDUbsaEEJlX159KegoWF95AA3zG26YWvfwIWSR/uOLVBQRGFh1m77dXgKxztJoA5sPX+rckDHO85FZEW4IC713ke4HSUADblFG5eMgFn+04dgomwDK6fsgFrXYgpg0k+wISnYTMyzQYcdACzYIDHTAsnI1FFcAYQ4fY5EzD0zZfPfwA8c2QRtqPBGAAAAABJRU5ErkJggg=="}],"display":{"thirdperson_righthand":{"translation":[0,4.5,0],"scale":[0.5,0.5,0.5]},"thirdperson_lefthand":{"translation":[0,4,0],"scale":[0.5,0.5,0.5]},"firstperson_righthand":{"translation":[0,3.5,0],"scale":[0.5,0.5,0.5]},"firstperson_lefthand":{"translation":[0,4.5,0],"scale":[0.5,0.5,0.5]},"ground":{"scale":[0.5,0.5,0.5]},"gui":{"rotation":[45,45,0],"translation":[0,-0.5,0],"scale":[0.5,0.5,0.5]},"head":{"translation":[0,14.25,0]},"fixed":{"rotation":[-90,0,0],"translation":[0,0,-3.75],"scale":[0.5,0.5,0.5]}}} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/logicgates/tflipflop.json b/src/main/resources/assets/ariasessentials/models/block/logicgates/tflipflop.json deleted file mode 100644 index 2453cba..0000000 --- a/src/main/resources/assets/ariasessentials/models/block/logicgates/tflipflop.json +++ /dev/null @@ -1,200 +0,0 @@ -{ - "credit": "Made with Blockbench", - "textures": { - "0": "ariasessentials:block/logicgates/logic_gate", - "1": "ariasessentials:block/logicgates/tflipflop", - "3": "ariasessentials:block/logicgates/torch_off", - "particle": "ariasessentials:block/logicgates/logic_gate" - }, - "elements": [ - { - "from": [0.25, 0.25, 0.25], - "to": [15.75, 0.5, 15.75], - "faces": { - "north": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "east": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "south": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "west": {"uv": [0, 0, 15.5, 0.25], "texture": "#0"}, - "up": {"uv": [0, 0, 15.5, 15.5], "rotation": 270, "texture": "#1"} - } - }, - { - "from": [0, 0, 0], - "to": [16, 0.25, 16], - "faces": { - "north": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "east": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "south": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "west": {"uv": [0, 0, 16, 16], "texture": "#0"}, - "up": {"uv": [0, 0, 16, 16], "rotation": 270, "texture": "#0"}, - "down": {"uv": [16, 0, 0, 16], "rotation": 90, "texture": "#0"} - } - }, - { - "from": [8.45, 0.5, 14], - "to": [9.2, 3, 14.75], - "faces": { - "north": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "east": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "south": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "west": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"} - } - }, - { - "from": [8.1, 3, 14], - "to": [9.55, 3.75, 14.75], - "faces": { - "north": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "south": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 3.475, 14], - "to": [9.2, 3.475, 14.75], - "faces": { - "up": {"uv": [6, 3, 10, 6], "texture": "#3"} - } - }, - { - "from": [8.45, 3, 13.65], - "to": [9.2, 3.75, 15.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8.825, 3.375, 14.375]}, - "faces": { - "east": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "west": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 0.5, 4], - "to": [9.2, 3, 4.75], - "faces": { - "north": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "east": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "south": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "west": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"} - } - }, - { - "from": [8.1, 3, 4], - "to": [9.55, 3.75, 4.75], - "faces": { - "north": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "south": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 3.475, 4], - "to": [9.2, 3.475, 4.75], - "faces": { - "up": {"uv": [6, 3, 10, 6], "texture": "#3"} - } - }, - { - "from": [8.45, 3, 3.65], - "to": [9.2, 3.75, 5.1], - "rotation": {"angle": 0, "axis": "y", "origin": [8.825, 3.375, 14.375]}, - "faces": { - "east": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "west": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 0.5, 0.8], - "to": [9.2, 3, 1.55], - "faces": { - "north": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "east": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "south": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"}, - "west": {"uv": [6, 6, 9.75, 14.5], "texture": "#3"} - } - }, - { - "from": [8.1, 3, 0.8], - "to": [9.55, 3.75, 1.55], - "faces": { - "north": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "south": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - }, - { - "from": [8.45, 3.475, 0.8], - "to": [9.2, 3.475, 1.55], - "faces": { - "up": {"uv": [6, 3, 10, 6], "texture": "#3"} - } - }, - { - "from": [8.45, 3, 0.45], - "to": [9.2, 3.75, 1.9], - "rotation": {"angle": 0, "axis": "y", "origin": [8.825, 3.375, 14.375]}, - "faces": { - "east": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"}, - "west": {"uv": [4, 0, 11.75, 5.5], "texture": "#3"} - } - } - ], - "display": { - "thirdperson_righthand": { - "translation": [0, 4.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "thirdperson_lefthand": { - "translation": [0, 4, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_righthand": { - "translation": [0, 3.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "firstperson_lefthand": { - "translation": [0, 4.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "ground": { - "scale": [0.5, 0.5, 0.5] - }, - "gui": { - "rotation": [45, 45, 0], - "translation": [0, -0.5, 0], - "scale": [0.5, 0.5, 0.5] - }, - "head": { - "translation": [0, 14.25, 0] - }, - "fixed": { - "rotation": [-90, 0, 0], - "translation": [0, 0, -3.75], - "scale": [0.5, 0.5, 0.5] - } - }, - "groups": [ - { - "name": "base", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [0, 1] - }, - { - "name": "input", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [2, 3, 4, 5] - }, - { - "name": "state", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [6, 7, 8, 9] - }, - { - "name": "state", - "origin": [0, 0, 0], - "color": 0, - "nbt": "{}", - "children": [10, 11, 12, 13] - } - ] -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/magical_scrubber.json b/src/main/resources/assets/ariasessentials/models/block/magical_scrubber.json new file mode 100644 index 0000000..8b0b0bb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/magical_scrubber.json @@ -0,0 +1,1489 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "texture_size": [32, 32], + "textures": { + "0": "ariasessentials:block/scrubber/center_cube", + "1": "ariasessentials:block/scrubber/frame_bars", + "2": "ariasessentials:block/scrubber/inner_corner_cubes", + "3": "ariasessentials:block/scrubber/corner_cube", + "particle": "ariasessentials:block/scrubber/center_cube" + }, + "elements": [ + { + "from": [0, 0, 0], + "to": [1, 1, 3], + "faces": { + "north": {"uv": [1.5, 0.5, 2, 1], "texture": "#3"}, + "east": {"uv": [0, 0, 1.5, 0.5], "texture": "#3"}, + "south": {"uv": [2, 0.5, 2.5, 1], "texture": "#3"}, + "west": {"uv": [0, 0.5, 1.5, 1], "texture": "#3"}, + "up": {"uv": [0.5, 2.5, 0, 1], "texture": "#3"}, + "down": {"uv": [1, 1, 0.5, 2.5], "texture": "#3"} + } + }, + { + "from": [2, 0, 0], + "to": [3, 1, 3], + "faces": { + "north": {"uv": [3.5, 1, 4, 1.5], "texture": "#3"}, + "east": {"uv": [1, 1, 2.5, 1.5], "texture": "#3"}, + "south": {"uv": [3.5, 1.5, 4, 2], "texture": "#3"}, + "west": {"uv": [1.5, 0, 3, 0.5], "texture": "#3"}, + "up": {"uv": [1.5, 3, 1, 1.5], "texture": "#3"}, + "down": {"uv": [2, 1.5, 1.5, 3], "texture": "#3"} + } + }, + { + "from": [1, 0, 0], + "to": [2, 1, 1], + "faces": { + "north": {"uv": [2, 3.5, 2.5, 4], "texture": "#3"}, + "east": {"uv": [3.5, 2, 4, 2.5], "texture": "#3"}, + "south": {"uv": [2.5, 3.5, 3, 4], "texture": "#3"}, + "west": {"uv": [3.5, 2.5, 4, 3], "texture": "#3"}, + "up": {"uv": [4, 3.5, 3.5, 3], "texture": "#3"}, + "down": {"uv": [4, 3.5, 3.5, 4], "texture": "#3"} + } + }, + { + "from": [1, 0, 2], + "to": [2, 1, 3], + "faces": { + "north": {"uv": [4, 0, 4.5, 0.5], "texture": "#3"}, + "east": {"uv": [4, 0.5, 4.5, 1], "texture": "#3"}, + "south": {"uv": [1, 4, 1.5, 4.5], "texture": "#3"}, + "west": {"uv": [4, 1, 4.5, 1.5], "texture": "#3"}, + "up": {"uv": [2, 4.5, 1.5, 4], "texture": "#3"}, + "down": {"uv": [4.5, 1.5, 4, 2], "texture": "#3"} + } + }, + { + "from": [2, 1, 0], + "to": [3, 3, 1], + "faces": { + "north": {"uv": [2, 1.5, 2.5, 2.5], "texture": "#3"}, + "east": {"uv": [0, 2.5, 0.5, 3.5], "texture": "#3"}, + "south": {"uv": [0.5, 2.5, 1, 3.5], "texture": "#3"}, + "west": {"uv": [2.5, 0.5, 3, 1.5], "texture": "#3"}, + "up": {"uv": [2.5, 4.5, 2, 4], "texture": "#3"}, + "down": {"uv": [4.5, 2, 4, 2.5], "texture": "#3"} + } + }, + { + "from": [1, 2, 0], + "to": [2, 3, 1], + "faces": { + "north": {"uv": [2.5, 4, 3, 4.5], "texture": "#3"}, + "east": {"uv": [4, 2.5, 4.5, 3], "texture": "#3"}, + "south": {"uv": [3, 4, 3.5, 4.5], "texture": "#3"}, + "west": {"uv": [4, 3, 4.5, 3.5], "texture": "#3"}, + "up": {"uv": [4, 4.5, 3.5, 4], "texture": "#3"}, + "down": {"uv": [4.5, 3.5, 4, 4], "texture": "#3"} + } + }, + { + "from": [0, 1, 0], + "to": [1, 3, 1], + "faces": { + "north": {"uv": [2.5, 1.5, 3, 2.5], "texture": "#3"}, + "east": {"uv": [2, 2.5, 2.5, 3.5], "texture": "#3"}, + "south": {"uv": [2.5, 2.5, 3, 3.5], "texture": "#3"}, + "west": {"uv": [3, 0, 3.5, 1], "texture": "#3"}, + "up": {"uv": [4.5, 4.5, 4, 4], "texture": "#3"}, + "down": {"uv": [0.5, 4.5, 0, 5], "texture": "#3"} + } + }, + { + "from": [0, 1, 2], + "to": [1, 3, 3], + "faces": { + "north": {"uv": [1, 3, 1.5, 4], "texture": "#3"}, + "east": {"uv": [3, 1, 3.5, 2], "texture": "#3"}, + "south": {"uv": [1.5, 3, 2, 4], "texture": "#3"}, + "west": {"uv": [3, 2, 3.5, 3], "texture": "#3"}, + "up": {"uv": [5, 0.5, 4.5, 0], "texture": "#3"}, + "down": {"uv": [1, 4.5, 0.5, 5], "texture": "#3"} + } + }, + { + "from": [1, 2, 2], + "to": [2, 3, 3], + "faces": { + "north": {"uv": [4.5, 0.5, 5, 1], "texture": "#3"}, + "east": {"uv": [1, 4.5, 1.5, 5], "texture": "#3"}, + "south": {"uv": [4.5, 1, 5, 1.5], "texture": "#3"}, + "west": {"uv": [1.5, 4.5, 2, 5], "texture": "#3"}, + "up": {"uv": [5, 2, 4.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 4.5, 2, 5], "texture": "#3"} + } + }, + { + "from": [2, 2, 1], + "to": [3, 3, 2], + "faces": { + "north": {"uv": [4.5, 2, 5, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 4.5, 3, 5], "texture": "#3"}, + "south": {"uv": [4.5, 2.5, 5, 3], "texture": "#3"}, + "west": {"uv": [3, 4.5, 3.5, 5], "texture": "#3"}, + "up": {"uv": [5, 3.5, 4.5, 3], "texture": "#3"}, + "down": {"uv": [4, 4.5, 3.5, 5], "texture": "#3"} + } + }, + { + "from": [0, 2, 1], + "to": [1, 3, 2], + "faces": { + "north": {"uv": [4.5, 3.5, 5, 4], "texture": "#3"}, + "east": {"uv": [4, 4.5, 4.5, 5], "texture": "#3"}, + "south": {"uv": [4.5, 4, 5, 4.5], "texture": "#3"}, + "west": {"uv": [4.5, 4.5, 5, 5], "texture": "#3"}, + "up": {"uv": [0.5, 5.5, 0, 5], "texture": "#3"}, + "down": {"uv": [5.5, 0, 5, 0.5], "texture": "#3"} + } + }, + { + "from": [2, 1, 2], + "to": [3, 3, 3], + "faces": { + "north": {"uv": [3, 3, 3.5, 4], "texture": "#3"}, + "east": {"uv": [0, 3.5, 0.5, 4.5], "texture": "#3"}, + "south": {"uv": [3.5, 0, 4, 1], "texture": "#3"}, + "west": {"uv": [0.5, 3.5, 1, 4.5], "texture": "#3"}, + "up": {"uv": [1, 5.5, 0.5, 5], "texture": "#3"}, + "down": {"uv": [5.5, 0.5, 5, 1], "texture": "#3"} + } + }, + { + "from": [0, 0, 13], + "to": [1, 1, 16], + "faces": { + "north": {"uv": [5.5, 2.5, 6, 3], "texture": "#3"}, + "east": {"uv": [1, 5, 2.5, 5.5], "texture": "#3"}, + "south": {"uv": [6, 2.5, 6.5, 3], "texture": "#3"}, + "west": {"uv": [5, 1, 6.5, 1.5], "texture": "#3"}, + "up": {"uv": [5.5, 3, 5, 1.5], "texture": "#3"}, + "down": {"uv": [3, 5, 2.5, 6.5], "texture": "#3"} + } + }, + { + "from": [2, 0, 13], + "to": [3, 1, 16], + "faces": { + "north": {"uv": [6, 3.5, 6.5, 4], "texture": "#3"}, + "east": {"uv": [3, 5, 4.5, 5.5], "texture": "#3"}, + "south": {"uv": [6, 4, 6.5, 4.5], "texture": "#3"}, + "west": {"uv": [5, 3, 6.5, 3.5], "texture": "#3"}, + "up": {"uv": [5.5, 5, 5, 3.5], "texture": "#3"}, + "down": {"uv": [5, 5, 4.5, 6.5], "texture": "#3"} + } + }, + { + "from": [1, 0, 13], + "to": [2, 1, 14], + "faces": { + "north": {"uv": [6, 4.5, 6.5, 5], "texture": "#3"}, + "east": {"uv": [5, 6, 5.5, 6.5], "texture": "#3"}, + "south": {"uv": [6, 5, 6.5, 5.5], "texture": "#3"}, + "west": {"uv": [6, 5.5, 6.5, 6], "texture": "#3"}, + "up": {"uv": [6.5, 6.5, 6, 6], "texture": "#3"}, + "down": {"uv": [0.5, 6.5, 0, 7], "texture": "#3"} + } + }, + { + "from": [1, 0, 15], + "to": [2, 1, 16], + "faces": { + "north": {"uv": [6.5, 0, 7, 0.5], "texture": "#3"}, + "east": {"uv": [0.5, 6.5, 1, 7], "texture": "#3"}, + "south": {"uv": [6.5, 0.5, 7, 1], "texture": "#3"}, + "west": {"uv": [1, 6.5, 1.5, 7], "texture": "#3"}, + "up": {"uv": [7, 1.5, 6.5, 1], "texture": "#3"}, + "down": {"uv": [2, 6.5, 1.5, 7], "texture": "#3"} + } + }, + { + "from": [2, 1, 13], + "to": [3, 3, 14], + "faces": { + "north": {"uv": [5, 5, 5.5, 6], "texture": "#3"}, + "east": {"uv": [0, 5.5, 0.5, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 0, 6, 1], "texture": "#3"}, + "west": {"uv": [0.5, 5.5, 1, 6.5], "texture": "#3"}, + "up": {"uv": [7, 2, 6.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 6.5, 2, 7], "texture": "#3"} + } + }, + { + "from": [1, 2, 13], + "to": [2, 3, 14], + "faces": { + "north": {"uv": [6.5, 2, 7, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 6.5, 3, 7], "texture": "#3"}, + "south": {"uv": [6.5, 2.5, 7, 3], "texture": "#3"}, + "west": {"uv": [3, 6.5, 3.5, 7], "texture": "#3"}, + "up": {"uv": [7, 3.5, 6.5, 3], "texture": "#3"}, + "down": {"uv": [4, 6.5, 3.5, 7], "texture": "#3"} + } + }, + { + "from": [0, 1, 13], + "to": [1, 3, 14], + "faces": { + "north": {"uv": [1, 5.5, 1.5, 6.5], "texture": "#3"}, + "east": {"uv": [1.5, 5.5, 2, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 1.5, 6, 2.5], "texture": "#3"}, + "west": {"uv": [2, 5.5, 2.5, 6.5], "texture": "#3"}, + "up": {"uv": [7, 4, 6.5, 3.5], "texture": "#3"}, + "down": {"uv": [4.5, 6.5, 4, 7], "texture": "#3"} + } + }, + { + "from": [0, 1, 15], + "to": [1, 3, 16], + "faces": { + "north": {"uv": [3, 5.5, 3.5, 6.5], "texture": "#3"}, + "east": {"uv": [3.5, 5.5, 4, 6.5], "texture": "#3"}, + "south": {"uv": [5.5, 3.5, 6, 4.5], "texture": "#3"}, + "west": {"uv": [4, 5.5, 4.5, 6.5], "texture": "#3"}, + "up": {"uv": [7, 4.5, 6.5, 4], "texture": "#3"}, + "down": {"uv": [5, 6.5, 4.5, 7], "texture": "#3"} + } + }, + { + "from": [1, 2, 15], + "to": [2, 3, 16], + "faces": { + "north": {"uv": [6.5, 4.5, 7, 5], "texture": "#3"}, + "east": {"uv": [5, 6.5, 5.5, 7], "texture": "#3"}, + "south": {"uv": [6.5, 5, 7, 5.5], "texture": "#3"}, + "west": {"uv": [5.5, 6.5, 6, 7], "texture": "#3"}, + "up": {"uv": [7, 6, 6.5, 5.5], "texture": "#3"}, + "down": {"uv": [6.5, 6.5, 6, 7], "texture": "#3"} + } + }, + { + "from": [2, 2, 14], + "to": [3, 3, 15], + "faces": { + "north": {"uv": [6.5, 6, 7, 6.5], "texture": "#3"}, + "east": {"uv": [6.5, 6.5, 7, 7], "texture": "#3"}, + "south": {"uv": [0, 7, 0.5, 7.5], "texture": "#3"}, + "west": {"uv": [7, 0, 7.5, 0.5], "texture": "#3"}, + "up": {"uv": [1, 7.5, 0.5, 7], "texture": "#3"}, + "down": {"uv": [7.5, 0.5, 7, 1], "texture": "#3"} + } + }, + { + "from": [0, 2, 14], + "to": [1, 3, 15], + "faces": { + "north": {"uv": [1, 7, 1.5, 7.5], "texture": "#3"}, + "east": {"uv": [7, 1, 7.5, 1.5], "texture": "#3"}, + "south": {"uv": [1.5, 7, 2, 7.5], "texture": "#3"}, + "west": {"uv": [7, 1.5, 7.5, 2], "texture": "#3"}, + "up": {"uv": [2.5, 7.5, 2, 7], "texture": "#3"}, + "down": {"uv": [7.5, 2, 7, 2.5], "texture": "#3"} + } + }, + { + "from": [2, 1, 15], + "to": [3, 3, 16], + "faces": { + "north": {"uv": [5.5, 4.5, 6, 5.5], "texture": "#3"}, + "east": {"uv": [5.5, 5.5, 6, 6.5], "texture": "#3"}, + "south": {"uv": [6, 0, 6.5, 1], "texture": "#3"}, + "west": {"uv": [6, 1.5, 6.5, 2.5], "texture": "#3"}, + "up": {"uv": [3, 7.5, 2.5, 7], "texture": "#3"}, + "down": {"uv": [7.5, 2.5, 7, 3], "texture": "#3"} + } + }, + { + "from": [13, 0, 13], + "to": [14, 1, 16], + "faces": { + "north": {"uv": [7.5, 4.5, 8, 5], "texture": "#3"}, + "east": {"uv": [3, 7, 4.5, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 5.5, 8, 6], "texture": "#3"}, + "west": {"uv": [7, 3, 8.5, 3.5], "texture": "#3"}, + "up": {"uv": [7.5, 5, 7, 3.5], "texture": "#3"}, + "down": {"uv": [5, 7, 4.5, 8.5], "texture": "#3"} + } + }, + { + "from": [15, 0, 13], + "to": [16, 1, 16], + "faces": { + "north": {"uv": [6, 7.5, 6.5, 8], "texture": "#3"}, + "east": {"uv": [5, 7, 6.5, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 6, 8, 6.5], "texture": "#3"}, + "west": {"uv": [7, 5, 8.5, 5.5], "texture": "#3"}, + "up": {"uv": [7.5, 7, 7, 5.5], "texture": "#3"}, + "down": {"uv": [7, 7, 6.5, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 13], + "to": [15, 1, 14], + "faces": { + "north": {"uv": [7.5, 6.5, 8, 7], "texture": "#3"}, + "east": {"uv": [7.5, 7, 8, 7.5], "texture": "#3"}, + "south": {"uv": [7.5, 7.5, 8, 8], "texture": "#3"}, + "west": {"uv": [8, 0, 8.5, 0.5], "texture": "#3"}, + "up": {"uv": [8.5, 1, 8, 0.5], "texture": "#3"}, + "down": {"uv": [8.5, 1, 8, 1.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 15], + "to": [15, 1, 16], + "faces": { + "north": {"uv": [8, 1.5, 8.5, 2], "texture": "#3"}, + "east": {"uv": [8, 2, 8.5, 2.5], "texture": "#3"}, + "south": {"uv": [8, 2.5, 8.5, 3], "texture": "#3"}, + "west": {"uv": [8, 3.5, 8.5, 4], "texture": "#3"}, + "up": {"uv": [8.5, 4.5, 8, 4], "texture": "#3"}, + "down": {"uv": [8.5, 4.5, 8, 5], "texture": "#3"} + } + }, + { + "from": [15, 1, 13], + "to": [16, 3, 14], + "faces": { + "north": {"uv": [7, 7, 7.5, 8], "texture": "#3"}, + "east": {"uv": [0, 7.5, 0.5, 8.5], "texture": "#3"}, + "south": {"uv": [7.5, 0, 8, 1], "texture": "#3"}, + "west": {"uv": [0.5, 7.5, 1, 8.5], "texture": "#3"}, + "up": {"uv": [8.5, 6, 8, 5.5], "texture": "#3"}, + "down": {"uv": [6.5, 8, 6, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 2, 13], + "to": [15, 3, 14], + "faces": { + "north": {"uv": [8, 6, 8.5, 6.5], "texture": "#3"}, + "east": {"uv": [8, 6.5, 8.5, 7], "texture": "#3"}, + "south": {"uv": [7, 8, 7.5, 8.5], "texture": "#3"}, + "west": {"uv": [8, 7, 8.5, 7.5], "texture": "#3"}, + "up": {"uv": [8, 8.5, 7.5, 8], "texture": "#3"}, + "down": {"uv": [8.5, 7.5, 8, 8], "texture": "#3"} + } + }, + { + "from": [13, 1, 13], + "to": [14, 3, 14], + "faces": { + "north": {"uv": [1, 7.5, 1.5, 8.5], "texture": "#3"}, + "east": {"uv": [7.5, 1, 8, 2], "texture": "#3"}, + "south": {"uv": [1.5, 7.5, 2, 8.5], "texture": "#3"}, + "west": {"uv": [2, 7.5, 2.5, 8.5], "texture": "#3"}, + "up": {"uv": [8.5, 8.5, 8, 8], "texture": "#3"}, + "down": {"uv": [0.5, 8.5, 0, 9], "texture": "#3"} + } + }, + { + "from": [13, 1, 15], + "to": [14, 3, 16], + "faces": { + "north": {"uv": [7.5, 2, 8, 3], "texture": "#3"}, + "east": {"uv": [2.5, 7.5, 3, 8.5], "texture": "#3"}, + "south": {"uv": [3, 7.5, 3.5, 8.5], "texture": "#3"}, + "west": {"uv": [3.5, 7.5, 4, 8.5], "texture": "#3"}, + "up": {"uv": [9, 0.5, 8.5, 0], "texture": "#3"}, + "down": {"uv": [1, 8.5, 0.5, 9], "texture": "#3"} + } + }, + { + "from": [14, 2, 15], + "to": [15, 3, 16], + "faces": { + "north": {"uv": [8.5, 0.5, 9, 1], "texture": "#3"}, + "east": {"uv": [1, 8.5, 1.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 1, 9, 1.5], "texture": "#3"}, + "west": {"uv": [1.5, 8.5, 2, 9], "texture": "#3"}, + "up": {"uv": [9, 2, 8.5, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 8.5, 2, 9], "texture": "#3"} + } + }, + { + "from": [15, 2, 14], + "to": [16, 3, 15], + "faces": { + "north": {"uv": [8.5, 2, 9, 2.5], "texture": "#3"}, + "east": {"uv": [2.5, 8.5, 3, 9], "texture": "#3"}, + "south": {"uv": [8.5, 2.5, 9, 3], "texture": "#3"}, + "west": {"uv": [3, 8.5, 3.5, 9], "texture": "#3"}, + "up": {"uv": [9, 3.5, 8.5, 3], "texture": "#3"}, + "down": {"uv": [4, 8.5, 3.5, 9], "texture": "#3"} + } + }, + { + "from": [13, 2, 14], + "to": [14, 3, 15], + "faces": { + "north": {"uv": [8.5, 3.5, 9, 4], "texture": "#3"}, + "east": {"uv": [4, 8.5, 4.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 4, 9, 4.5], "texture": "#3"}, + "west": {"uv": [4.5, 8.5, 5, 9], "texture": "#3"}, + "up": {"uv": [9, 5, 8.5, 4.5], "texture": "#3"}, + "down": {"uv": [5.5, 8.5, 5, 9], "texture": "#3"} + } + }, + { + "from": [15, 1, 15], + "to": [16, 3, 16], + "faces": { + "north": {"uv": [7.5, 3.5, 8, 4.5], "texture": "#3"}, + "east": {"uv": [4, 7.5, 4.5, 8.5], "texture": "#3"}, + "south": {"uv": [5, 7.5, 5.5, 8.5], "texture": "#3"}, + "west": {"uv": [5.5, 7.5, 6, 8.5], "texture": "#3"}, + "up": {"uv": [9, 5.5, 8.5, 5], "texture": "#3"}, + "down": {"uv": [6, 8.5, 5.5, 9], "texture": "#3"} + } + }, + { + "from": [13, 0, 0], + "to": [14, 1, 3], + "faces": { + "north": {"uv": [8.5, 8, 9, 8.5], "texture": "#3"}, + "east": {"uv": [8.5, 5.5, 10, 6], "texture": "#3"}, + "south": {"uv": [9, 6, 9.5, 6.5], "texture": "#3"}, + "west": {"uv": [6, 8.5, 7.5, 9], "texture": "#3"}, + "up": {"uv": [9, 7.5, 8.5, 6], "texture": "#3"}, + "down": {"uv": [8, 8.5, 7.5, 10], "texture": "#3"} + } + }, + { + "from": [15, 0, 0], + "to": [16, 1, 3], + "faces": { + "north": {"uv": [6.5, 9, 7, 9.5], "texture": "#3"}, + "east": {"uv": [8.5, 7.5, 10, 8], "texture": "#3"}, + "south": {"uv": [9, 6.5, 9.5, 7], "texture": "#3"}, + "west": {"uv": [8, 8.5, 9.5, 9], "texture": "#3"}, + "up": {"uv": [0.5, 10.5, 0, 9], "texture": "#3"}, + "down": {"uv": [9.5, 0, 9, 1.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 0], + "to": [15, 1, 1], + "faces": { + "north": {"uv": [7, 9, 7.5, 9.5], "texture": "#3"}, + "east": {"uv": [9, 7, 9.5, 7.5], "texture": "#3"}, + "south": {"uv": [8, 9, 8.5, 9.5], "texture": "#3"}, + "west": {"uv": [9, 8, 9.5, 8.5], "texture": "#3"}, + "up": {"uv": [9, 9.5, 8.5, 9], "texture": "#3"}, + "down": {"uv": [9.5, 9, 9, 9.5], "texture": "#3"} + } + }, + { + "from": [14, 0, 2], + "to": [15, 1, 3], + "faces": { + "north": {"uv": [9.5, 0, 10, 0.5], "texture": "#3"}, + "east": {"uv": [9.5, 0.5, 10, 1], "texture": "#3"}, + "south": {"uv": [9.5, 1, 10, 1.5], "texture": "#3"}, + "west": {"uv": [9.5, 1.5, 10, 2], "texture": "#3"}, + "up": {"uv": [10, 2.5, 9.5, 2], "texture": "#3"}, + "down": {"uv": [10, 2.5, 9.5, 3], "texture": "#3"} + } + }, + { + "from": [15, 1, 0], + "to": [16, 3, 1], + "faces": { + "north": {"uv": [0.5, 9, 1, 10], "texture": "#3"}, + "east": {"uv": [1, 9, 1.5, 10], "texture": "#3"}, + "south": {"uv": [1.5, 9, 2, 10], "texture": "#3"}, + "west": {"uv": [9, 1.5, 9.5, 2.5], "texture": "#3"}, + "up": {"uv": [10, 3.5, 9.5, 3], "texture": "#3"}, + "down": {"uv": [10, 3.5, 9.5, 4], "texture": "#3"} + } + }, + { + "from": [14, 2, 0], + "to": [15, 3, 1], + "faces": { + "north": {"uv": [9.5, 4, 10, 4.5], "texture": "#3"}, + "east": {"uv": [9.5, 4.5, 10, 5], "texture": "#3"}, + "south": {"uv": [9.5, 5, 10, 5.5], "texture": "#3"}, + "west": {"uv": [9.5, 6, 10, 6.5], "texture": "#3"}, + "up": {"uv": [7, 10, 6.5, 9.5], "texture": "#3"}, + "down": {"uv": [10, 6.5, 9.5, 7], "texture": "#3"} + } + }, + { + "from": [13, 1, 0], + "to": [14, 3, 1], + "faces": { + "north": {"uv": [2, 9, 2.5, 10], "texture": "#3"}, + "east": {"uv": [2.5, 9, 3, 10], "texture": "#3"}, + "south": {"uv": [9, 2.5, 9.5, 3.5], "texture": "#3"}, + "west": {"uv": [3, 9, 3.5, 10], "texture": "#3"}, + "up": {"uv": [7.5, 10, 7, 9.5], "texture": "#3"}, + "down": {"uv": [10, 7, 9.5, 7.5], "texture": "#3"} + } + }, + { + "from": [13, 1, 2], + "to": [14, 3, 3], + "faces": { + "north": {"uv": [3.5, 9, 4, 10], "texture": "#3"}, + "east": {"uv": [9, 3.5, 9.5, 4.5], "texture": "#3"}, + "south": {"uv": [4, 9, 4.5, 10], "texture": "#3"}, + "west": {"uv": [4.5, 9, 5, 10], "texture": "#3"}, + "up": {"uv": [8.5, 10, 8, 9.5], "texture": "#3"}, + "down": {"uv": [10, 8, 9.5, 8.5], "texture": "#3"} + } + }, + { + "from": [14, 2, 2], + "to": [15, 3, 3], + "faces": { + "north": {"uv": [8.5, 9.5, 9, 10], "texture": "#3"}, + "east": {"uv": [9.5, 8.5, 10, 9], "texture": "#3"}, + "south": {"uv": [9, 9.5, 9.5, 10], "texture": "#3"}, + "west": {"uv": [9.5, 9, 10, 9.5], "texture": "#3"}, + "up": {"uv": [10, 10, 9.5, 9.5], "texture": "#3"}, + "down": {"uv": [10.5, 0, 10, 0.5], "texture": "#3"} + } + }, + { + "from": [15, 2, 1], + "to": [16, 3, 2], + "faces": { + "north": {"uv": [0.5, 10, 1, 10.5], "texture": "#3"}, + "east": {"uv": [10, 0.5, 10.5, 1], "texture": "#3"}, + "south": {"uv": [1, 10, 1.5, 10.5], "texture": "#3"}, + "west": {"uv": [10, 1, 10.5, 1.5], "texture": "#3"}, + "up": {"uv": [2, 10.5, 1.5, 10], "texture": "#3"}, + "down": {"uv": [10.5, 1.5, 10, 2], "texture": "#3"} + } + }, + { + "from": [13, 2, 1], + "to": [14, 3, 2], + "faces": { + "north": {"uv": [2, 10, 2.5, 10.5], "texture": "#3"}, + "east": {"uv": [10, 2, 10.5, 2.5], "texture": "#3"}, + "south": {"uv": [2.5, 10, 3, 10.5], "texture": "#3"}, + "west": {"uv": [10, 2.5, 10.5, 3], "texture": "#3"}, + "up": {"uv": [3.5, 10.5, 3, 10], "texture": "#3"}, + "down": {"uv": [10.5, 3, 10, 3.5], "texture": "#3"} + } + }, + { + "from": [15, 1, 2], + "to": [16, 3, 3], + "faces": { + "north": {"uv": [9, 4.5, 9.5, 5.5], "texture": "#3"}, + "east": {"uv": [5, 9, 5.5, 10], "texture": "#3"}, + "south": {"uv": [5.5, 9, 6, 10], "texture": "#3"}, + "west": {"uv": [6, 9, 6.5, 10], "texture": "#3"}, + "up": {"uv": [4, 10.5, 3.5, 10], "texture": "#3"}, + "down": {"uv": [10.5, 3.5, 10, 4], "texture": "#3"} + } + }, + { + "from": [13, 13, 0], + "to": [14, 14, 3], + "faces": { + "north": {"uv": [3, 10.5, 3.5, 11], "texture": "#3"}, + "east": {"uv": [4, 10, 5.5, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 3, 11, 3.5], "texture": "#3"}, + "west": {"uv": [10, 4, 11.5, 4.5], "texture": "#3"}, + "up": {"uv": [10.5, 6, 10, 4.5], "texture": "#3"}, + "down": {"uv": [6, 10, 5.5, 11.5], "texture": "#3"} + } + }, + { + "from": [15, 13, 0], + "to": [16, 14, 3], + "faces": { + "north": {"uv": [3.5, 10.5, 4, 11], "texture": "#3"}, + "east": {"uv": [6, 10, 7.5, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 3.5, 11, 4], "texture": "#3"}, + "west": {"uv": [10, 6, 11.5, 6.5], "texture": "#3"}, + "up": {"uv": [10.5, 8, 10, 6.5], "texture": "#3"}, + "down": {"uv": [8, 10, 7.5, 11.5], "texture": "#3"} + } + }, + { + "from": [14, 13, 0], + "to": [15, 14, 1], + "faces": { + "north": {"uv": [4, 10.5, 4.5, 11], "texture": "#3"}, + "east": {"uv": [4.5, 10.5, 5, 11], "texture": "#3"}, + "south": {"uv": [10.5, 4.5, 11, 5], "texture": "#3"}, + "west": {"uv": [5, 10.5, 5.5, 11], "texture": "#3"}, + "up": {"uv": [11, 5.5, 10.5, 5], "texture": "#3"}, + "down": {"uv": [11, 5.5, 10.5, 6], "texture": "#3"} + } + }, + { + "from": [14, 13, 2], + "to": [15, 14, 3], + "faces": { + "north": {"uv": [6, 10.5, 6.5, 11], "texture": "#3"}, + "east": {"uv": [6.5, 10.5, 7, 11], "texture": "#3"}, + "south": {"uv": [10.5, 6.5, 11, 7], "texture": "#3"}, + "west": {"uv": [7, 10.5, 7.5, 11], "texture": "#3"}, + "up": {"uv": [11, 7.5, 10.5, 7], "texture": "#3"}, + "down": {"uv": [11, 7.5, 10.5, 8], "texture": "#3"} + } + }, + { + "from": [15, 14, 0], + "to": [16, 16, 1], + "faces": { + "north": {"uv": [8, 10, 8.5, 11], "texture": "#3"}, + "east": {"uv": [10, 8, 10.5, 9], "texture": "#3"}, + "south": {"uv": [8.5, 10, 9, 11], "texture": "#3"}, + "west": {"uv": [9, 10, 9.5, 11], "texture": "#3"}, + "up": {"uv": [11, 8.5, 10.5, 8], "texture": "#3"}, + "down": {"uv": [11, 8.5, 10.5, 9], "texture": "#3"} + } + }, + { + "from": [14, 15, 0], + "to": [15, 16, 1], + "faces": { + "north": {"uv": [10.5, 9, 11, 9.5], "texture": "#3"}, + "east": {"uv": [10.5, 9.5, 11, 10], "texture": "#3"}, + "south": {"uv": [10.5, 10, 11, 10.5], "texture": "#3"}, + "west": {"uv": [10.5, 10.5, 11, 11], "texture": "#3"}, + "up": {"uv": [11.5, 0.5, 11, 0], "texture": "#3"}, + "down": {"uv": [11.5, 0.5, 11, 1], "texture": "#3"} + } + }, + { + "from": [13, 14, 0], + "to": [14, 16, 1], + "faces": { + "north": {"uv": [10, 9, 10.5, 10], "texture": "#3"}, + "east": {"uv": [9.5, 10, 10, 11], "texture": "#3"}, + "south": {"uv": [10, 10, 10.5, 11], "texture": "#3"}, + "west": {"uv": [0, 10.5, 0.5, 11.5], "texture": "#3"}, + "up": {"uv": [11.5, 1.5, 11, 1], "texture": "#3"}, + "down": {"uv": [11.5, 1.5, 11, 2], "texture": "#3"} + } + }, + { + "from": [13, 14, 2], + "to": [14, 16, 3], + "faces": { + "north": {"uv": [10.5, 0, 11, 1], "texture": "#3"}, + "east": {"uv": [0.5, 10.5, 1, 11.5], "texture": "#3"}, + "south": {"uv": [1, 10.5, 1.5, 11.5], "texture": "#3"}, + "west": {"uv": [10.5, 1, 11, 2], "texture": "#3"}, + "up": {"uv": [11.5, 2.5, 11, 2], "texture": "#3"}, + "down": {"uv": [11.5, 2.5, 11, 3], "texture": "#3"} + } + }, + { + "from": [14, 15, 2], + "to": [15, 16, 3], + "faces": { + "north": {"uv": [3, 11, 3.5, 11.5], "texture": "#3"}, + "east": {"uv": [11, 3, 11.5, 3.5], "texture": "#3"}, + "south": {"uv": [3.5, 11, 4, 11.5], "texture": "#3"}, + "west": {"uv": [11, 3.5, 11.5, 4], "texture": "#3"}, + "up": {"uv": [4.5, 11.5, 4, 11], "texture": "#3"}, + "down": {"uv": [5, 11, 4.5, 11.5], "texture": "#3"} + } + }, + { + "from": [15, 15, 1], + "to": [16, 16, 2], + "faces": { + "north": {"uv": [11, 4.5, 11.5, 5], "texture": "#3"}, + "east": {"uv": [5, 11, 5.5, 11.5], "texture": "#3"}, + "south": {"uv": [11, 5, 11.5, 5.5], "texture": "#3"}, + "west": {"uv": [11, 5.5, 11.5, 6], "texture": "#3"}, + "up": {"uv": [6.5, 11.5, 6, 11], "texture": "#3"}, + "down": {"uv": [7, 11, 6.5, 11.5], "texture": "#3"} + } + }, + { + "from": [13, 15, 1], + "to": [14, 16, 2], + "faces": { + "north": {"uv": [11, 6.5, 11.5, 7], "texture": "#3"}, + "east": {"uv": [7, 11, 7.5, 11.5], "texture": "#3"}, + "south": {"uv": [11, 7, 11.5, 7.5], "texture": "#3"}, + "west": {"uv": [11, 7.5, 11.5, 8], "texture": "#3"}, + "up": {"uv": [8.5, 11.5, 8, 11], "texture": "#3"}, + "down": {"uv": [11.5, 8, 11, 8.5], "texture": "#3"} + } + }, + { + "from": [15, 14, 2], + "to": [16, 16, 3], + "faces": { + "north": {"uv": [1.5, 10.5, 2, 11.5], "texture": "#3"}, + "east": {"uv": [2, 10.5, 2.5, 11.5], "texture": "#3"}, + "south": {"uv": [10.5, 2, 11, 3], "texture": "#3"}, + "west": {"uv": [2.5, 10.5, 3, 11.5], "texture": "#3"}, + "up": {"uv": [9, 11.5, 8.5, 11], "texture": "#3"}, + "down": {"uv": [11.5, 8.5, 11, 9], "texture": "#3"} + } + }, + { + "from": [13, 13, 13], + "to": [14, 14, 16], + "faces": { + "north": {"uv": [7, 11.5, 7.5, 12], "texture": "#3"}, + "east": {"uv": [9, 11, 10.5, 11.5], "texture": "#3"}, + "south": {"uv": [7.5, 11.5, 8, 12], "texture": "#3"}, + "west": {"uv": [11, 9, 12.5, 9.5], "texture": "#3"}, + "up": {"uv": [11.5, 11, 11, 9.5], "texture": "#3"}, + "down": {"uv": [11, 11, 10.5, 12.5], "texture": "#3"} + } + }, + { + "from": [15, 13, 13], + "to": [16, 14, 16], + "faces": { + "north": {"uv": [11.5, 7.5, 12, 8], "texture": "#3"}, + "east": {"uv": [11, 11, 12.5, 11.5], "texture": "#3"}, + "south": {"uv": [8, 11.5, 8.5, 12], "texture": "#3"}, + "west": {"uv": [0, 11.5, 1.5, 12], "texture": "#3"}, + "up": {"uv": [12, 1.5, 11.5, 0], "texture": "#3"}, + "down": {"uv": [2, 11.5, 1.5, 13], "texture": "#3"} + } + }, + { + "from": [14, 13, 13], + "to": [15, 14, 14], + "faces": { + "north": {"uv": [11.5, 8, 12, 8.5], "texture": "#3"}, + "east": {"uv": [8.5, 11.5, 9, 12], "texture": "#3"}, + "south": {"uv": [11.5, 8.5, 12, 9], "texture": "#3"}, + "west": {"uv": [9, 11.5, 9.5, 12], "texture": "#3"}, + "up": {"uv": [10, 12, 9.5, 11.5], "texture": "#3"}, + "down": {"uv": [12, 9.5, 11.5, 10], "texture": "#3"} + } + }, + { + "from": [14, 13, 15], + "to": [15, 14, 16], + "faces": { + "north": {"uv": [10, 11.5, 10.5, 12], "texture": "#3"}, + "east": {"uv": [11.5, 10, 12, 10.5], "texture": "#3"}, + "south": {"uv": [11.5, 10.5, 12, 11], "texture": "#3"}, + "west": {"uv": [11, 11.5, 11.5, 12], "texture": "#3"}, + "up": {"uv": [12, 12, 11.5, 11.5], "texture": "#3"}, + "down": {"uv": [0.5, 12, 0, 12.5], "texture": "#3"} + } + }, + { + "from": [15, 14, 13], + "to": [16, 16, 14], + "faces": { + "north": {"uv": [11.5, 1.5, 12, 2.5], "texture": "#3"}, + "east": {"uv": [2, 11.5, 2.5, 12.5], "texture": "#3"}, + "south": {"uv": [2.5, 11.5, 3, 12.5], "texture": "#3"}, + "west": {"uv": [11.5, 2.5, 12, 3.5], "texture": "#3"}, + "up": {"uv": [12.5, 0.5, 12, 0], "texture": "#3"}, + "down": {"uv": [1, 12, 0.5, 12.5], "texture": "#3"} + } + }, + { + "from": [14, 15, 13], + "to": [15, 16, 14], + "faces": { + "north": {"uv": [12, 0.5, 12.5, 1], "texture": "#3"}, + "east": {"uv": [1, 12, 1.5, 12.5], "texture": "#3"}, + "south": {"uv": [12, 1, 12.5, 1.5], "texture": "#3"}, + "west": {"uv": [12, 1.5, 12.5, 2], "texture": "#3"}, + "up": {"uv": [12.5, 2.5, 12, 2], "texture": "#3"}, + "down": {"uv": [12.5, 2.5, 12, 3], "texture": "#3"} + } + }, + { + "from": [13, 14, 13], + "to": [14, 16, 14], + "faces": { + "north": {"uv": [3, 11.5, 3.5, 12.5], "texture": "#3"}, + "east": {"uv": [3.5, 11.5, 4, 12.5], "texture": "#3"}, + "south": {"uv": [11.5, 3.5, 12, 4.5], "texture": "#3"}, + "west": {"uv": [4, 11.5, 4.5, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 3.5, 12, 3], "texture": "#3"}, + "down": {"uv": [12.5, 3.5, 12, 4], "texture": "#3"} + } + }, + { + "from": [13, 14, 15], + "to": [14, 16, 16], + "faces": { + "north": {"uv": [4.5, 11.5, 5, 12.5], "texture": "#3"}, + "east": {"uv": [11.5, 4.5, 12, 5.5], "texture": "#3"}, + "south": {"uv": [5, 11.5, 5.5, 12.5], "texture": "#3"}, + "west": {"uv": [5.5, 11.5, 6, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 4.5, 12, 4], "texture": "#3"}, + "down": {"uv": [12.5, 4.5, 12, 5], "texture": "#3"} + } + }, + { + "from": [14, 15, 15], + "to": [15, 16, 16], + "faces": { + "north": {"uv": [12, 5, 12.5, 5.5], "texture": "#3"}, + "east": {"uv": [12, 5.5, 12.5, 6], "texture": "#3"}, + "south": {"uv": [12, 6, 12.5, 6.5], "texture": "#3"}, + "west": {"uv": [12, 6.5, 12.5, 7], "texture": "#3"}, + "up": {"uv": [7.5, 12.5, 7, 12], "texture": "#3"}, + "down": {"uv": [12.5, 7, 12, 7.5], "texture": "#3"} + } + }, + { + "from": [15, 15, 14], + "to": [16, 16, 15], + "faces": { + "north": {"uv": [7.5, 12, 8, 12.5], "texture": "#3"}, + "east": {"uv": [12, 7.5, 12.5, 8], "texture": "#3"}, + "south": {"uv": [8, 12, 8.5, 12.5], "texture": "#3"}, + "west": {"uv": [12, 8, 12.5, 8.5], "texture": "#3"}, + "up": {"uv": [9, 12.5, 8.5, 12], "texture": "#3"}, + "down": {"uv": [12.5, 8.5, 12, 9], "texture": "#3"} + } + }, + { + "from": [13, 15, 14], + "to": [14, 16, 15], + "faces": { + "north": {"uv": [9, 12, 9.5, 12.5], "texture": "#3"}, + "east": {"uv": [9.5, 12, 10, 12.5], "texture": "#3"}, + "south": {"uv": [12, 9.5, 12.5, 10], "texture": "#3"}, + "west": {"uv": [10, 12, 10.5, 12.5], "texture": "#3"}, + "up": {"uv": [12.5, 10.5, 12, 10], "texture": "#3"}, + "down": {"uv": [12.5, 10.5, 12, 11], "texture": "#3"} + } + }, + { + "from": [15, 14, 15], + "to": [16, 16, 16], + "faces": { + "north": {"uv": [11.5, 5.5, 12, 6.5], "texture": "#3"}, + "east": {"uv": [6, 11.5, 6.5, 12.5], "texture": "#3"}, + "south": {"uv": [6.5, 11.5, 7, 12.5], "texture": "#3"}, + "west": {"uv": [11.5, 6.5, 12, 7.5], "texture": "#3"}, + "up": {"uv": [11.5, 12.5, 11, 12], "texture": "#3"}, + "down": {"uv": [12, 12, 11.5, 12.5], "texture": "#3"} + } + }, + { + "from": [0, 13, 13], + "to": [1, 14, 16], + "faces": { + "north": {"uv": [12.5, 8, 13, 8.5], "texture": "#3"}, + "east": {"uv": [12, 11.5, 13.5, 12], "texture": "#3"}, + "south": {"uv": [8.5, 12.5, 9, 13], "texture": "#3"}, + "west": {"uv": [12, 12, 13.5, 12.5], "texture": "#3"}, + "up": {"uv": [0.5, 14, 0, 12.5], "texture": "#3"}, + "down": {"uv": [13, 0, 12.5, 1.5], "texture": "#3"} + } + }, + { + "from": [2, 13, 13], + "to": [3, 14, 16], + "faces": { + "north": {"uv": [12.5, 8.5, 13, 9], "texture": "#3"}, + "east": {"uv": [12.5, 1.5, 14, 2], "texture": "#3"}, + "south": {"uv": [9, 12.5, 9.5, 13], "texture": "#3"}, + "west": {"uv": [2, 12.5, 3.5, 13], "texture": "#3"}, + "up": {"uv": [1, 14, 0.5, 12.5], "texture": "#3"}, + "down": {"uv": [1.5, 12.5, 1, 14], "texture": "#3"} + } + }, + { + "from": [1, 13, 13], + "to": [2, 14, 14], + "faces": { + "north": {"uv": [12.5, 9, 13, 9.5], "texture": "#3"}, + "east": {"uv": [9.5, 12.5, 10, 13], "texture": "#3"}, + "south": {"uv": [12.5, 9.5, 13, 10], "texture": "#3"}, + "west": {"uv": [10, 12.5, 10.5, 13], "texture": "#3"}, + "up": {"uv": [13, 10.5, 12.5, 10], "texture": "#3"}, + "down": {"uv": [11, 12.5, 10.5, 13], "texture": "#3"} + } + }, + { + "from": [1, 13, 15], + "to": [2, 14, 16], + "faces": { + "north": {"uv": [12.5, 10.5, 13, 11], "texture": "#3"}, + "east": {"uv": [11, 12.5, 11.5, 13], "texture": "#3"}, + "south": {"uv": [12.5, 11, 13, 11.5], "texture": "#3"}, + "west": {"uv": [11.5, 12.5, 12, 13], "texture": "#3"}, + "up": {"uv": [12.5, 13, 12, 12.5], "texture": "#3"}, + "down": {"uv": [13, 12.5, 12.5, 13], "texture": "#3"} + } + }, + { + "from": [2, 14, 13], + "to": [3, 16, 14], + "faces": { + "north": {"uv": [12.5, 2, 13, 3], "texture": "#3"}, + "east": {"uv": [12.5, 3, 13, 4], "texture": "#3"}, + "south": {"uv": [3.5, 12.5, 4, 13.5], "texture": "#3"}, + "west": {"uv": [4, 12.5, 4.5, 13.5], "texture": "#3"}, + "up": {"uv": [13.5, 0.5, 13, 0], "texture": "#3"}, + "down": {"uv": [13.5, 0.5, 13, 1], "texture": "#3"} + } + }, + { + "from": [1, 15, 13], + "to": [2, 16, 14], + "faces": { + "north": {"uv": [13, 1, 13.5, 1.5], "texture": "#3"}, + "east": {"uv": [1.5, 13, 2, 13.5], "texture": "#3"}, + "south": {"uv": [2, 13, 2.5, 13.5], "texture": "#3"}, + "west": {"uv": [13, 2, 13.5, 2.5], "texture": "#3"}, + "up": {"uv": [3, 13.5, 2.5, 13], "texture": "#3"}, + "down": {"uv": [13.5, 2.5, 13, 3], "texture": "#3"} + } + }, + { + "from": [0, 14, 13], + "to": [1, 16, 14], + "faces": { + "north": {"uv": [12.5, 4, 13, 5], "texture": "#3"}, + "east": {"uv": [4.5, 12.5, 5, 13.5], "texture": "#3"}, + "south": {"uv": [5, 12.5, 5.5, 13.5], "texture": "#3"}, + "west": {"uv": [12.5, 5, 13, 6], "texture": "#3"}, + "up": {"uv": [3.5, 13.5, 3, 13], "texture": "#3"}, + "down": {"uv": [13.5, 3, 13, 3.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 15], + "to": [1, 16, 16], + "faces": { + "north": {"uv": [5.5, 12.5, 6, 13.5], "texture": "#3"}, + "east": {"uv": [6, 12.5, 6.5, 13.5], "texture": "#3"}, + "south": {"uv": [12.5, 6, 13, 7], "texture": "#3"}, + "west": {"uv": [6.5, 12.5, 7, 13.5], "texture": "#3"}, + "up": {"uv": [13.5, 4, 13, 3.5], "texture": "#3"}, + "down": {"uv": [13.5, 4, 13, 4.5], "texture": "#3"} + } + }, + { + "from": [1, 15, 15], + "to": [2, 16, 16], + "faces": { + "north": {"uv": [13, 4.5, 13.5, 5], "texture": "#3"}, + "east": {"uv": [13, 5, 13.5, 5.5], "texture": "#3"}, + "south": {"uv": [13, 5.5, 13.5, 6], "texture": "#3"}, + "west": {"uv": [13, 6, 13.5, 6.5], "texture": "#3"}, + "up": {"uv": [13.5, 7, 13, 6.5], "texture": "#3"}, + "down": {"uv": [13.5, 7, 13, 7.5], "texture": "#3"} + } + }, + { + "from": [2, 15, 14], + "to": [3, 16, 15], + "faces": { + "north": {"uv": [13, 7.5, 13.5, 8], "texture": "#3"}, + "east": {"uv": [13, 8, 13.5, 8.5], "texture": "#3"}, + "south": {"uv": [8.5, 13, 9, 13.5], "texture": "#3"}, + "west": {"uv": [13, 8.5, 13.5, 9], "texture": "#3"}, + "up": {"uv": [9.5, 13.5, 9, 13], "texture": "#3"}, + "down": {"uv": [13.5, 9, 13, 9.5], "texture": "#3"} + } + }, + { + "from": [0, 15, 14], + "to": [1, 16, 15], + "faces": { + "north": {"uv": [9.5, 13, 10, 13.5], "texture": "#3"}, + "east": {"uv": [13, 9.5, 13.5, 10], "texture": "#3"}, + "south": {"uv": [10, 13, 10.5, 13.5], "texture": "#3"}, + "west": {"uv": [13, 10, 13.5, 10.5], "texture": "#3"}, + "up": {"uv": [11, 13.5, 10.5, 13], "texture": "#3"}, + "down": {"uv": [13.5, 10.5, 13, 11], "texture": "#3"} + } + }, + { + "from": [2, 14, 15], + "to": [3, 16, 16], + "faces": { + "north": {"uv": [7, 12.5, 7.5, 13.5], "texture": "#3"}, + "east": {"uv": [12.5, 7, 13, 8], "texture": "#3"}, + "south": {"uv": [7.5, 12.5, 8, 13.5], "texture": "#3"}, + "west": {"uv": [8, 12.5, 8.5, 13.5], "texture": "#3"}, + "up": {"uv": [11.5, 13.5, 11, 13], "texture": "#3"}, + "down": {"uv": [13.5, 11, 13, 11.5], "texture": "#3"} + } + }, + { + "from": [0, 13, 0], + "to": [1, 14, 3], + "faces": { + "north": {"uv": [9, 13.5, 9.5, 14], "texture": "#3"}, + "east": {"uv": [11.5, 13, 13, 13.5], "texture": "#3"}, + "south": {"uv": [13.5, 9, 14, 9.5], "texture": "#3"}, + "west": {"uv": [13, 12.5, 14.5, 13], "texture": "#3"}, + "up": {"uv": [13.5, 14.5, 13, 13], "texture": "#3"}, + "down": {"uv": [14, 0, 13.5, 1.5], "texture": "#3"} + } + }, + { + "from": [2, 13, 0], + "to": [3, 14, 3], + "faces": { + "north": {"uv": [9.5, 13.5, 10, 14], "texture": "#3"}, + "east": {"uv": [1.5, 13.5, 3, 14], "texture": "#3"}, + "south": {"uv": [13.5, 9.5, 14, 10], "texture": "#3"}, + "west": {"uv": [13.5, 2, 15, 2.5], "texture": "#3"}, + "up": {"uv": [14, 4, 13.5, 2.5], "texture": "#3"}, + "down": {"uv": [3.5, 13.5, 3, 15], "texture": "#3"} + } + }, + { + "from": [1, 13, 0], + "to": [2, 14, 1], + "faces": { + "north": {"uv": [10, 13.5, 10.5, 14], "texture": "#3"}, + "east": {"uv": [13.5, 10, 14, 10.5], "texture": "#3"}, + "south": {"uv": [10.5, 13.5, 11, 14], "texture": "#3"}, + "west": {"uv": [13.5, 10.5, 14, 11], "texture": "#3"}, + "up": {"uv": [11.5, 14, 11, 13.5], "texture": "#3"}, + "down": {"uv": [14, 11, 13.5, 11.5], "texture": "#3"} + } + }, + { + "from": [1, 13, 2], + "to": [2, 14, 3], + "faces": { + "north": {"uv": [11.5, 13.5, 12, 14], "texture": "#3"}, + "east": {"uv": [13.5, 11.5, 14, 12], "texture": "#3"}, + "south": {"uv": [12, 13.5, 12.5, 14], "texture": "#3"}, + "west": {"uv": [13.5, 12, 14, 12.5], "texture": "#3"}, + "up": {"uv": [13, 14, 12.5, 13.5], "texture": "#3"}, + "down": {"uv": [14, 13, 13.5, 13.5], "texture": "#3"} + } + }, + { + "from": [2, 14, 0], + "to": [3, 16, 1], + "faces": { + "north": {"uv": [3.5, 13.5, 4, 14.5], "texture": "#3"}, + "east": {"uv": [4, 13.5, 4.5, 14.5], "texture": "#3"}, + "south": {"uv": [13.5, 4, 14, 5], "texture": "#3"}, + "west": {"uv": [4.5, 13.5, 5, 14.5], "texture": "#3"}, + "up": {"uv": [14, 14, 13.5, 13.5], "texture": "#3"}, + "down": {"uv": [0.5, 14, 0, 14.5], "texture": "#3"} + } + }, + { + "from": [1, 15, 0], + "to": [2, 16, 1], + "faces": { + "north": {"uv": [14, 0, 14.5, 0.5], "texture": "#3"}, + "east": {"uv": [0.5, 14, 1, 14.5], "texture": "#3"}, + "south": {"uv": [14, 0.5, 14.5, 1], "texture": "#3"}, + "west": {"uv": [1, 14, 1.5, 14.5], "texture": "#3"}, + "up": {"uv": [14.5, 1.5, 14, 1], "texture": "#3"}, + "down": {"uv": [2, 14, 1.5, 14.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 0], + "to": [1, 16, 1], + "faces": { + "north": {"uv": [5, 13.5, 5.5, 14.5], "texture": "#3"}, + "east": {"uv": [13.5, 5, 14, 6], "texture": "#3"}, + "south": {"uv": [5.5, 13.5, 6, 14.5], "texture": "#3"}, + "west": {"uv": [6, 13.5, 6.5, 14.5], "texture": "#3"}, + "up": {"uv": [14.5, 2, 14, 1.5], "texture": "#3"}, + "down": {"uv": [2.5, 14, 2, 14.5], "texture": "#3"} + } + }, + { + "from": [0, 14, 2], + "to": [1, 16, 3], + "faces": { + "north": {"uv": [13.5, 6, 14, 7], "texture": "#3"}, + "east": {"uv": [6.5, 13.5, 7, 14.5], "texture": "#3"}, + "south": {"uv": [7, 13.5, 7.5, 14.5], "texture": "#3"}, + "west": {"uv": [13.5, 7, 14, 8], "texture": "#3"}, + "up": {"uv": [3, 14.5, 2.5, 14], "texture": "#3"}, + "down": {"uv": [14.5, 2.5, 14, 3], "texture": "#3"} + } + }, + { + "from": [1, 15, 2], + "to": [2, 16, 3], + "faces": { + "north": {"uv": [14, 3, 14.5, 3.5], "texture": "#3"}, + "east": {"uv": [14, 3.5, 14.5, 4], "texture": "#3"}, + "south": {"uv": [14, 4, 14.5, 4.5], "texture": "#3"}, + "west": {"uv": [14, 4.5, 14.5, 5], "texture": "#3"}, + "up": {"uv": [14.5, 5.5, 14, 5], "texture": "#3"}, + "down": {"uv": [14.5, 5.5, 14, 6], "texture": "#3"} + } + }, + { + "from": [2, 15, 1], + "to": [3, 16, 2], + "faces": { + "north": {"uv": [14, 6, 14.5, 6.5], "texture": "#3"}, + "east": {"uv": [14, 6.5, 14.5, 7], "texture": "#3"}, + "south": {"uv": [14, 7, 14.5, 7.5], "texture": "#3"}, + "west": {"uv": [14, 7.5, 14.5, 8], "texture": "#3"}, + "up": {"uv": [14.5, 8.5, 14, 8], "texture": "#3"}, + "down": {"uv": [14.5, 8.5, 14, 9], "texture": "#3"} + } + }, + { + "from": [0, 15, 1], + "to": [1, 16, 2], + "faces": { + "north": {"uv": [9, 14, 9.5, 14.5], "texture": "#3"}, + "east": {"uv": [14, 9, 14.5, 9.5], "texture": "#3"}, + "south": {"uv": [9.5, 14, 10, 14.5], "texture": "#3"}, + "west": {"uv": [14, 9.5, 14.5, 10], "texture": "#3"}, + "up": {"uv": [10.5, 14.5, 10, 14], "texture": "#3"}, + "down": {"uv": [14.5, 10, 14, 10.5], "texture": "#3"} + } + }, + { + "from": [2, 14, 2], + "to": [3, 16, 3], + "faces": { + "north": {"uv": [7.5, 13.5, 8, 14.5], "texture": "#3"}, + "east": {"uv": [8, 13.5, 8.5, 14.5], "texture": "#3"}, + "south": {"uv": [13.5, 8, 14, 9], "texture": "#3"}, + "west": {"uv": [8.5, 13.5, 9, 14.5], "texture": "#3"}, + "up": {"uv": [11, 14.5, 10.5, 14], "texture": "#3"}, + "down": {"uv": [14.5, 10.5, 14, 11], "texture": "#3"} + } + }, + { + "from": [1, 1, 2], + "to": [2, 2, 14], + "faces": { + "north": {"uv": [7, 1, 7.5, 1.5], "texture": "#1"}, + "east": {"uv": [0, 0, 6, 0.5], "texture": "#1"}, + "south": {"uv": [7, 1.5, 7.5, 2], "texture": "#1"}, + "west": {"uv": [0, 0.5, 6, 1], "texture": "#1"}, + "up": {"uv": [0.5, 7, 0, 1], "texture": "#1"}, + "down": {"uv": [1, 1, 0.5, 7], "texture": "#1"} + } + }, + { + "from": [14, 1, 2], + "to": [15, 2, 14], + "faces": { + "north": {"uv": [7.5, 1, 8, 1.5], "texture": "#1"}, + "east": {"uv": [1, 1, 7, 1.5], "texture": "#1"}, + "south": {"uv": [7.5, 1.5, 8, 2], "texture": "#1"}, + "west": {"uv": [1, 1.5, 7, 2], "texture": "#1"}, + "up": {"uv": [1.5, 8, 1, 2], "texture": "#1"}, + "down": {"uv": [2, 2, 1.5, 8], "texture": "#1"} + } + }, + { + "from": [2, 1, 1], + "to": [14, 2, 2], + "faces": { + "north": {"uv": [2, 2, 8, 2.5], "texture": "#1"}, + "east": {"uv": [9.5, 6, 10, 6.5], "texture": "#1"}, + "south": {"uv": [2, 2.5, 8, 3], "texture": "#1"}, + "west": {"uv": [9.5, 6.5, 10, 7], "texture": "#1"}, + "up": {"uv": [8, 3.5, 2, 3], "texture": "#1"}, + "down": {"uv": [8, 3.5, 2, 4], "texture": "#1"} + } + }, + { + "from": [2, 1, 14], + "to": [14, 2, 15], + "faces": { + "north": {"uv": [2, 4, 8, 4.5], "texture": "#1"}, + "east": {"uv": [9.5, 7, 10, 7.5], "texture": "#1"}, + "south": {"uv": [2, 4.5, 8, 5], "texture": "#1"}, + "west": {"uv": [9.5, 7.5, 10, 8], "texture": "#1"}, + "up": {"uv": [8, 5.5, 2, 5], "texture": "#1"}, + "down": {"uv": [8, 5.5, 2, 6], "texture": "#1"} + } + }, + { + "from": [1, 14, 2], + "to": [2, 15, 14], + "faces": { + "north": {"uv": [9.5, 8, 10, 8.5], "texture": "#1"}, + "east": {"uv": [6, 0, 12, 0.5], "texture": "#1"}, + "south": {"uv": [9.5, 8.5, 10, 9], "texture": "#1"}, + "west": {"uv": [6, 0.5, 12, 1], "texture": "#1"}, + "up": {"uv": [2.5, 12, 2, 6], "texture": "#1"}, + "down": {"uv": [3, 6, 2.5, 12], "texture": "#1"} + } + }, + { + "from": [1, 2, 1], + "to": [2, 14, 2], + "faces": { + "north": {"uv": [3, 6, 3.5, 12], "texture": "#1"}, + "east": {"uv": [3.5, 6, 4, 12], "texture": "#1"}, + "south": {"uv": [4, 6, 4.5, 12], "texture": "#1"}, + "west": {"uv": [4.5, 6, 5, 12], "texture": "#1"}, + "up": {"uv": [10, 9.5, 9.5, 9], "texture": "#1"}, + "down": {"uv": [10, 9.5, 9.5, 10], "texture": "#1"} + } + }, + { + "from": [1, 2, 14], + "to": [2, 14, 15], + "faces": { + "north": {"uv": [5, 6, 5.5, 12], "texture": "#1"}, + "east": {"uv": [5.5, 6, 6, 12], "texture": "#1"}, + "south": {"uv": [6, 6, 6.5, 12], "texture": "#1"}, + "west": {"uv": [6.5, 6, 7, 12], "texture": "#1"}, + "up": {"uv": [10.5, 6.5, 10, 6], "texture": "#1"}, + "down": {"uv": [10.5, 6.5, 10, 7], "texture": "#1"} + } + }, + { + "from": [14, 2, 14], + "to": [15, 14, 15], + "faces": { + "north": {"uv": [0, 7, 0.5, 13], "texture": "#1"}, + "east": {"uv": [0.5, 7, 1, 13], "texture": "#1"}, + "south": {"uv": [7, 6, 7.5, 12], "texture": "#1"}, + "west": {"uv": [7.5, 6, 8, 12], "texture": "#1"}, + "up": {"uv": [10.5, 7.5, 10, 7], "texture": "#1"}, + "down": {"uv": [10.5, 7.5, 10, 8], "texture": "#1"} + } + }, + { + "from": [14, 2, 1], + "to": [15, 14, 2], + "faces": { + "north": {"uv": [1, 8, 1.5, 14], "texture": "#1"}, + "east": {"uv": [8, 1, 8.5, 7], "texture": "#1"}, + "south": {"uv": [1.5, 8, 2, 14], "texture": "#1"}, + "west": {"uv": [8, 7, 8.5, 13], "texture": "#1"}, + "up": {"uv": [10.5, 8.5, 10, 8], "texture": "#1"}, + "down": {"uv": [9, 10, 8.5, 10.5], "texture": "#1"} + } + }, + { + "from": [2, 14, 14], + "to": [14, 15, 15], + "faces": { + "north": {"uv": [8.5, 1, 14.5, 1.5], "texture": "#1"}, + "east": {"uv": [10, 8.5, 10.5, 9], "texture": "#1"}, + "south": {"uv": [8.5, 1.5, 14.5, 2], "texture": "#1"}, + "west": {"uv": [9, 10, 9.5, 10.5], "texture": "#1"}, + "up": {"uv": [14.5, 2.5, 8.5, 2], "texture": "#1"}, + "down": {"uv": [14.5, 2.5, 8.5, 3], "texture": "#1"} + } + }, + { + "from": [14, 14, 2], + "to": [15, 15, 14], + "faces": { + "north": {"uv": [10, 9, 10.5, 9.5], "texture": "#1"}, + "east": {"uv": [8.5, 3, 14.5, 3.5], "texture": "#1"}, + "south": {"uv": [9.5, 10, 10, 10.5], "texture": "#1"}, + "west": {"uv": [8.5, 3.5, 14.5, 4], "texture": "#1"}, + "up": {"uv": [9, 10, 8.5, 4], "texture": "#1"}, + "down": {"uv": [9.5, 4, 9, 10], "texture": "#1"} + } + }, + { + "from": [2, 14, 1], + "to": [14, 15, 2], + "faces": { + "north": {"uv": [9.5, 4, 15.5, 4.5], "texture": "#1"}, + "east": {"uv": [10, 9.5, 10.5, 10], "texture": "#1"}, + "south": {"uv": [9.5, 4.5, 15.5, 5], "texture": "#1"}, + "west": {"uv": [10, 10, 10.5, 10.5], "texture": "#1"}, + "up": {"uv": [15.5, 5.5, 9.5, 5], "texture": "#1"}, + "down": {"uv": [15.5, 5.5, 9.5, 6], "texture": "#1"} + } + }, + { + "from": [6, 6, 6], + "to": [10, 10, 10], + "faces": { + "north": {"uv": [0, 0, 4, 4], "texture": "#0"}, + "east": {"uv": [0, 4, 4, 8], "texture": "#0"}, + "south": {"uv": [4, 0, 8, 4], "texture": "#0"}, + "west": {"uv": [4, 4, 8, 8], "texture": "#0"}, + "up": {"uv": [4, 12, 0, 8], "texture": "#0"}, + "down": {"uv": [12, 0, 8, 4], "texture": "#0"} + } + }, + { + "name": "internal", + "from": [1, 1, 14], + "to": [2, 2, 15], + "faces": { + "north": {"uv": [0, 0, 1, 1], "texture": "#2"}, + "east": {"uv": [0, 1, 1, 2], "texture": "#2"}, + "south": {"uv": [1, 0, 2, 1], "texture": "#2"}, + "west": {"uv": [1, 1, 2, 2], "texture": "#2"}, + "up": {"uv": [1, 3, 0, 2], "texture": "#2"}, + "down": {"uv": [3, 0, 2, 1], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 1, 1], + "to": [15, 2, 2], + "faces": { + "north": {"uv": [1, 2, 2, 3], "texture": "#2"}, + "east": {"uv": [2, 1, 3, 2], "texture": "#2"}, + "south": {"uv": [2, 2, 3, 3], "texture": "#2"}, + "west": {"uv": [0, 3, 1, 4], "texture": "#2"}, + "up": {"uv": [4, 1, 3, 0], "texture": "#2"}, + "down": {"uv": [2, 3, 1, 4], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 14, 1], + "to": [15, 15, 2], + "faces": { + "north": {"uv": [3, 1, 4, 2], "texture": "#2"}, + "east": {"uv": [2, 3, 3, 4], "texture": "#2"}, + "south": {"uv": [3, 2, 4, 3], "texture": "#2"}, + "west": {"uv": [3, 3, 4, 4], "texture": "#2"}, + "up": {"uv": [1, 5, 0, 4], "texture": "#2"}, + "down": {"uv": [5, 0, 4, 1], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 14, 14], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [1, 4, 2, 5], "texture": "#2"}, + "east": {"uv": [4, 1, 5, 2], "texture": "#2"}, + "south": {"uv": [2, 4, 3, 5], "texture": "#2"}, + "west": {"uv": [4, 2, 5, 3], "texture": "#2"}, + "up": {"uv": [4, 5, 3, 4], "texture": "#2"}, + "down": {"uv": [5, 3, 4, 4], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 14, 1], + "to": [2, 15, 2], + "faces": { + "north": {"uv": [4, 4, 5, 5], "texture": "#2"}, + "east": {"uv": [0, 5, 1, 6], "texture": "#2"}, + "south": {"uv": [5, 0, 6, 1], "texture": "#2"}, + "west": {"uv": [1, 5, 2, 6], "texture": "#2"}, + "up": {"uv": [6, 2, 5, 1], "texture": "#2"}, + "down": {"uv": [3, 5, 2, 6], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 14, 14], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [5, 2, 6, 3], "texture": "#2"}, + "east": {"uv": [3, 5, 4, 6], "texture": "#2"}, + "south": {"uv": [5, 3, 6, 4], "texture": "#2"}, + "west": {"uv": [4, 5, 5, 6], "texture": "#2"}, + "up": {"uv": [6, 5, 5, 4], "texture": "#2"}, + "down": {"uv": [6, 5, 5, 6], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [14, 1, 14], + "to": [15, 2, 15], + "faces": { + "north": {"uv": [0, 6, 1, 7], "texture": "#2"}, + "east": {"uv": [6, 0, 7, 1], "texture": "#2"}, + "south": {"uv": [1, 6, 2, 7], "texture": "#2"}, + "west": {"uv": [6, 1, 7, 2], "texture": "#2"}, + "up": {"uv": [3, 7, 2, 6], "texture": "#2"}, + "down": {"uv": [7, 2, 6, 3], "texture": "#2"} + } + }, + { + "name": "internal", + "from": [1, 1, 1], + "to": [2, 2, 2], + "faces": { + "north": {"uv": [3, 6, 4, 7], "texture": "#2"}, + "east": {"uv": [6, 3, 7, 4], "texture": "#2"}, + "south": {"uv": [4, 6, 5, 7], "texture": "#2"}, + "west": {"uv": [6, 4, 7, 5], "texture": "#2"}, + "up": {"uv": [6, 7, 5, 6], "texture": "#2"}, + "down": {"uv": [7, 5, 6, 6], "texture": "#2"} + } + } + ], + "groups": [ + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83] + }, + { + "name": "Corner", + "origin": [0, 0, 0], + "color": 0, + "children": [84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95] + }, + { + "name": "Frame Bars", + "origin": [0, 0, 0], + "color": 0, + "children": [96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107] + }, + 108, + { + "name": "Internals", + "origin": [0, 0, 0], + "color": 0, + "children": [109, 110, 111, 112, 113, 114, 115, 116] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..68abdef --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/nether_vault_steel_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/nether_vault_steel_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json new file mode 100644 index 0000000..c378c1a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json new file mode 100644 index 0000000..296d607 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_left", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json new file mode 100644 index 0000000..4bbea1b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_left_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_left_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json new file mode 100644 index 0000000..7ef01a0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_right", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json new file mode 100644 index 0000000..1ae0ac1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_bottom_right_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_bottom_right_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json new file mode 100644 index 0000000..4ed06ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_left", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json new file mode 100644 index 0000000..feccae3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_left_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_left_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json new file mode 100644 index 0000000..9a92cda --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_right", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json new file mode 100644 index 0000000..797b677 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_door_top_right_open.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/door_top_right_open", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_top", + "top": "ariasessentials:block/engineersdecor/door/old_industrial_door_texture_bottom" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json new file mode 100644 index 0000000..577aea8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json new file mode 100644 index 0000000..f4bf971 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json new file mode 100644 index 0000000..e23ae58 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json new file mode 100644 index 0000000..ac02e82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_planks_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json new file mode 100644 index 0000000..ecfe41e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json new file mode 100644 index 0000000..577aea8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json new file mode 100644 index 0000000..f3f46ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json new file mode 100644 index 0000000..4fc9faa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json new file mode 100644 index 0000000..f4bf971 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json new file mode 100644 index 0000000..577100d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json new file mode 100644 index 0000000..7fd58ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json new file mode 100644 index 0000000..e23ae58 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json new file mode 100644 index 0000000..2de73a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json new file mode 100644 index 0000000..5381c9e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json new file mode 100644 index 0000000..ac02e82 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json new file mode 100644 index 0000000..7be7a7e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json new file mode 100644 index 0000000..acc63a0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json new file mode 100644 index 0000000..86f282d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json new file mode 100644 index 0000000..8a16412 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json new file mode 100644 index 0000000..52aa7b6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json new file mode 100644 index 0000000..87a81ea --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json new file mode 100644 index 0000000..c061a1c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json new file mode 100644 index 0000000..53b7cda --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json new file mode 100644 index 0000000..99becb1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json new file mode 100644 index 0000000..52f565e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json new file mode 100644 index 0000000..b1c4544 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json new file mode 100644 index 0000000..ea26982 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json new file mode 100644 index 0000000..35b599c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/old_industrial_wood_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "side": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3", + "top": "ariasessentials:block/engineersdecor/material/industrial_planks_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json new file mode 100644 index 0000000..ab63fd6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_inventory.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture_inventory" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json new file mode 100644 index 0000000..66e2dc5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model0.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json new file mode 100644 index 0000000..6e5a55a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model1.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json new file mode 100644 index 0000000..ef9a17e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model2.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json new file mode 100644 index 0000000..fd55598 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_block_model3.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json new file mode 100644 index 0000000..1be35ac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json new file mode 100644 index 0000000..66e2dc5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json new file mode 100644 index 0000000..303d361 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model0_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json new file mode 100644 index 0000000..7fededd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json new file mode 100644 index 0000000..6e5a55a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json new file mode 100644 index 0000000..b1c8fa0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model1_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json new file mode 100644 index 0000000..7b1a5b5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json new file mode 100644 index 0000000..ef9a17e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json new file mode 100644 index 0000000..fc0edab --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model2_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json new file mode 100644 index 0000000..8f74c99 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_bottom.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json new file mode 100644 index 0000000..fd55598 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_double.json @@ -0,0 +1,7 @@ +{ + "parent": "minecraft:block/cube_all", + "render_type": "minecraft:translucent", + "textures": { + "all": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json new file mode 100644 index 0000000..2738a5d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/panzerglass_slab_model3_top.json @@ -0,0 +1,9 @@ +{ + "parent": "minecraft:block/slab_top", + "render_type": "minecraft:translucent", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "side": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3", + "top": "ariasessentials:block/engineersdecor/glass/panzerglass_block_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_light.json b/src/main/resources/assets/ariasessentials/models/block/pool_light.json new file mode 100644 index 0000000..c972778 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile.json new file mode 100644 index 0000000..f0956ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab.json new file mode 100644 index 0000000..9d74d64 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json new file mode 100644 index 0000000..790e885 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs.json new file mode 100644 index 0000000..8d8798d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json new file mode 100644 index 0000000..799ffeb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json new file mode 100644 index 0000000..baf2a0e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/pool_tile", + "side": "ariasessentials:block/pool_tile", + "top": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json new file mode 100644 index 0000000..765b068 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json new file mode 100644 index 0000000..3291bfc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json new file mode 100644 index 0000000..beca28c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json new file mode 100644 index 0000000..31be976 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json new file mode 100644 index 0000000..7062a8b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/raw_cobalt_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "block/cube_all", + "textures": { + "all": "ariasessentials:block/raw_cobalt_ore" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json new file mode 100644 index 0000000..a29c246 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json new file mode 100644 index 0000000..558c94d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json new file mode 100644 index 0000000..555c431 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json new file mode 100644 index 0000000..7b5e259 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json new file mode 100644 index 0000000..4918d1a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json new file mode 100644 index 0000000..86abce9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json new file mode 100644 index 0000000..10ad375 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json new file mode 100644 index 0000000..0578281 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json new file mode 100644 index 0000000..7a3ef60 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json new file mode 100644 index 0000000..a29c246 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json new file mode 100644 index 0000000..5635d39 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json new file mode 100644 index 0000000..4fd4c75 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json new file mode 100644 index 0000000..558c94d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json new file mode 100644 index 0000000..10953ed --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json new file mode 100644 index 0000000..0ecd22d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json new file mode 100644 index 0000000..555c431 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json new file mode 100644 index 0000000..da5db3c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json new file mode 100644 index 0000000..3535310 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json new file mode 100644 index 0000000..7b5e259 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json new file mode 100644 index 0000000..161f0f5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json new file mode 100644 index 0000000..ea746ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json new file mode 100644 index 0000000..4918d1a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json new file mode 100644 index 0000000..7a6cde7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json new file mode 100644 index 0000000..7cff2be --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json new file mode 100644 index 0000000..86abce9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json new file mode 100644 index 0000000..e61786d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json new file mode 100644 index 0000000..95fb75b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json new file mode 100644 index 0000000..10ad375 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json new file mode 100644 index 0000000..823845b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json new file mode 100644 index 0000000..7679d43 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json new file mode 100644 index 0000000..0578281 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json new file mode 100644 index 0000000..f8ddac3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json new file mode 100644 index 0000000..1afb483 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json new file mode 100644 index 0000000..7ad09d2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json new file mode 100644 index 0000000..ff2b074 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json new file mode 100644 index 0000000..a7a0f5e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json new file mode 100644 index 0000000..3b06fc9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json new file mode 100644 index 0000000..f12430f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json new file mode 100644 index 0000000..85a0171 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json new file mode 100644 index 0000000..55c9872 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json new file mode 100644 index 0000000..290dd4f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json new file mode 100644 index 0000000..a51981e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json new file mode 100644 index 0000000..49a3dc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json new file mode 100644 index 0000000..506a97d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json new file mode 100644 index 0000000..b3f9dd8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json new file mode 100644 index 0000000..56a59a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json new file mode 100644 index 0000000..159fdc6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json new file mode 100644 index 0000000..a9c754b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json new file mode 100644 index 0000000..4c4a6bb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json new file mode 100644 index 0000000..8d2647b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json new file mode 100644 index 0000000..6b6b34d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json new file mode 100644 index 0000000..9d668bb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json new file mode 100644 index 0000000..7faebbb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json new file mode 100644 index 0000000..e5e918b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json new file mode 100644 index 0000000..d63291a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json new file mode 100644 index 0000000..a9a5643 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json new file mode 100644 index 0000000..7a07c05 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json new file mode 100644 index 0000000..fb767ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json new file mode 100644 index 0000000..2501ee1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json new file mode 100644 index 0000000..73e7f5b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json new file mode 100644 index 0000000..6d26bc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json new file mode 100644 index 0000000..cd383ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json new file mode 100644 index 0000000..5891bfb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json new file mode 100644 index 0000000..527f936 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json new file mode 100644 index 0000000..ea6caf5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json new file mode 100644 index 0000000..7a07c05 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json new file mode 100644 index 0000000..2b594fa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json new file mode 100644 index 0000000..97be829 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json new file mode 100644 index 0000000..fb767ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json new file mode 100644 index 0000000..d1b8845 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json new file mode 100644 index 0000000..6a96223 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json new file mode 100644 index 0000000..2501ee1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json new file mode 100644 index 0000000..0ae7738 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json new file mode 100644 index 0000000..889e65c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json new file mode 100644 index 0000000..73e7f5b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json new file mode 100644 index 0000000..4b1d969 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json new file mode 100644 index 0000000..0ccc5e8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json new file mode 100644 index 0000000..6d26bc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json new file mode 100644 index 0000000..a66e5d1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json new file mode 100644 index 0000000..e8e6d3a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json new file mode 100644 index 0000000..cd383ce --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json new file mode 100644 index 0000000..8845bcb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json new file mode 100644 index 0000000..786152f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json new file mode 100644 index 0000000..5891bfb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json new file mode 100644 index 0000000..e976563 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json new file mode 100644 index 0000000..e310e2f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json new file mode 100644 index 0000000..527f936 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json new file mode 100644 index 0000000..f826628 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json new file mode 100644 index 0000000..8eecf4f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json new file mode 100644 index 0000000..83c748a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json new file mode 100644 index 0000000..23b6325 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json new file mode 100644 index 0000000..4f4af6d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json new file mode 100644 index 0000000..b15ba5e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json new file mode 100644 index 0000000..6bb9f3f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json new file mode 100644 index 0000000..df9c94c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json new file mode 100644 index 0000000..15c45b3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json new file mode 100644 index 0000000..be859ca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json new file mode 100644 index 0000000..952d869 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json new file mode 100644 index 0000000..07e5c52 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json new file mode 100644 index 0000000..403ce30 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json new file mode 100644 index 0000000..55308ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json new file mode 100644 index 0000000..b5a55bc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json new file mode 100644 index 0000000..bd09991 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json new file mode 100644 index 0000000..e912507 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json new file mode 100644 index 0000000..f444684 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json new file mode 100644 index 0000000..6764a88 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json new file mode 100644 index 0000000..86aaf62 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json new file mode 100644 index 0000000..57ede3a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json new file mode 100644 index 0000000..6faf0ff --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json new file mode 100644 index 0000000..30e8fa9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json new file mode 100644 index 0000000..8d549c9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json new file mode 100644 index 0000000..845480f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_tile_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "side": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7", + "top": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_tile_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json new file mode 100644 index 0000000..f224b55 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json new file mode 100644 index 0000000..344e9ac --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json new file mode 100644 index 0000000..5a1152c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json new file mode 100644 index 0000000..f405d86 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rebar_concrete_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/concrete/rebar_concrete_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_light.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_light.json new file mode 100644 index 0000000..850f0c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_light.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/red_pool_light" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile.json new file mode 100644 index 0000000..9603739 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json new file mode 100644 index 0000000..272b928 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json new file mode 100644 index 0000000..8787d10 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_slab_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json new file mode 100644 index 0000000..821a24f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json new file mode 100644 index 0000000..75a3fdb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json new file mode 100644 index 0000000..1b639c9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/red_pool_tile", + "side": "ariasessentials:block/red_pool_tile", + "top": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json new file mode 100644 index 0000000..9a668c0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json new file mode 100644 index 0000000..3599ce8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json new file mode 100644 index 0000000..ba32cae --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json new file mode 100644 index 0000000..091d52c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_pool_tile_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/red_pool_tile" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_stairs.json b/src/main/resources/assets/ariasessentials/models/block/red_stairs.json new file mode 100644 index 0000000..c081a99 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_stairs.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_stairs_inner.json b/src/main/resources/assets/ariasessentials/models/block/red_stairs_inner.json new file mode 100644 index 0000000..c6bd2e3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_stairs_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_stairs_outer.json b/src/main/resources/assets/ariasessentials/models/block/red_stairs_outer.json new file mode 100644 index 0000000..a35fc7d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_stairs_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/thresholds/blood_red", + "side": "ariasessentials:block/thresholds/blood_red", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_tile.json b/src/main/resources/assets/ariasessentials/models/block/red_tile.json new file mode 100644 index 0000000..d5c2967 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_tile.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/top", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/red_tile_w_circle", + "side": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_tile_br.json b/src/main/resources/assets/ariasessentials/models/block/red_tile_br.json new file mode 100644 index 0000000..9715737 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_tile_br.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "top": "ariasessentials:block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red", + "side": "ariasessentials:block/thresholds/blood_red" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/red_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/block/red_tile_to_wall.json new file mode 100644 index 0000000..3dec861 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_tile_to_wall.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_floor_to_wall", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_1.json new file mode 100644 index 0000000..f7dccbc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_1.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_wall", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_2.json new file mode 100644 index 0000000..1205523 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/red_wall_variant_2.json @@ -0,0 +1,7 @@ +{ + "parent": "ariasessentials:block/fb/sided", + "textures": { + "side": "ariasessentials:block/thresholds/hallway/wall/red_wall2", + "top": "ariasessentials:block/thresholds/blood_red" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/rotatable.json b/src/main/resources/assets/ariasessentials/models/block/rotatable.json new file mode 100644 index 0000000..1f9fbc3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/rotatable.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "particle": "#side", + "down": "#side", + "up": "#side", + "north": "#front", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/sided.json b/src/main/resources/assets/ariasessentials/models/block/sided.json new file mode 100644 index 0000000..bf01ac5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/sided.json @@ -0,0 +1,12 @@ +{ + "parent": "minecraft:block/cube", + "textures": { + "particle": "#side", + "down": "#top", + "up": "#top", + "north": "#side", + "east": "#side", + "south": "#side", + "west": "#side" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json new file mode 100644 index 0000000..a2c6e7c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model0.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json new file mode 100644 index 0000000..6c2c7e1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model1.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json new file mode 100644 index 0000000..abd8b1f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model2.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json new file mode 100644 index 0000000..de3b4ba --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model3.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json new file mode 100644 index 0000000..da7a784 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model4.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json new file mode 100644 index 0000000..1123074 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model5.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json new file mode 100644 index 0000000..9103309 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model6.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json new file mode 100644 index 0000000..cd009f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_block_model7.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json new file mode 100644 index 0000000..2dd3468 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json new file mode 100644 index 0000000..a2c6e7c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json new file mode 100644 index 0000000..e45c52a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model0_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json new file mode 100644 index 0000000..5f117c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json new file mode 100644 index 0000000..6c2c7e1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json new file mode 100644 index 0000000..d241a46 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model1_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json new file mode 100644 index 0000000..a307c14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json new file mode 100644 index 0000000..abd8b1f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json new file mode 100644 index 0000000..d3e7924 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model2_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json new file mode 100644 index 0000000..e713321 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json new file mode 100644 index 0000000..de3b4ba --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json new file mode 100644 index 0000000..e4a83c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model3_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json new file mode 100644 index 0000000..4176d45 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json new file mode 100644 index 0000000..da7a784 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json new file mode 100644 index 0000000..0041d69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model4_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json new file mode 100644 index 0000000..e7f3413 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json new file mode 100644 index 0000000..1123074 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json new file mode 100644 index 0000000..9824fca --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model5_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json new file mode 100644 index 0000000..a394f2a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json new file mode 100644 index 0000000..9103309 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json new file mode 100644 index 0000000..29d759e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model6_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json new file mode 100644 index 0000000..aaa6416 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_bottom.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json new file mode 100644 index 0000000..cd009f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_double.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json new file mode 100644 index 0000000..da5c0d3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_slab_model7_top.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/slab_top", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json new file mode 100644 index 0000000..e73be34 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json new file mode 100644 index 0000000..5ccfcb6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json new file mode 100644 index 0000000..e9d33a2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model0_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json new file mode 100644 index 0000000..47b5dd7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json new file mode 100644 index 0000000..ad3507c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json new file mode 100644 index 0000000..1e13784 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model1_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture1" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json new file mode 100644 index 0000000..a10c7ec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json new file mode 100644 index 0000000..80348cd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json new file mode 100644 index 0000000..4210e44 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model2_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture2" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json new file mode 100644 index 0000000..f279aaa --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json new file mode 100644 index 0000000..93b7943 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json new file mode 100644 index 0000000..23308a1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model3_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture3" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json new file mode 100644 index 0000000..023819f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json new file mode 100644 index 0000000..36a5b24 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json new file mode 100644 index 0000000..5b0e232 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model4_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture4" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json new file mode 100644 index 0000000..c00f1f2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json new file mode 100644 index 0000000..7f95f14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json new file mode 100644 index 0000000..5208530 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model5_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture5" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json new file mode 100644 index 0000000..e2cbc96 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json new file mode 100644 index 0000000..cb6ddd8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json new file mode 100644 index 0000000..4604c12 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model6_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture6" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json new file mode 100644 index 0000000..cb12521 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json new file mode 100644 index 0000000..cb3c42b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_inner.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/inner_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json new file mode 100644 index 0000000..3cd7743 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_stairs_model7_outer.json @@ -0,0 +1,8 @@ +{ + "parent": "minecraft:block/outer_stairs", + "textures": { + "bottom": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "side": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7", + "top": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_texture7" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json new file mode 100644 index 0000000..ee73ed8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_inventory.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/wall_inventory", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json new file mode 100644 index 0000000..3a8e76a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_post.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_post", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json new file mode 100644 index 0000000..e08c599 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json new file mode 100644 index 0000000..4cc1107 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/slag_brick_wall_side_tall.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/template_wall_side_tall", + "textures": { + "wall": "ariasessentials:block/engineersdecor/slag_brick/slag_brick_wall0" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/stable_singularity.json b/src/main/resources/assets/ariasessentials/models/block/stable_singularity.json new file mode 100644 index 0000000..ec540e6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/stable_singularity.json @@ -0,0 +1,321 @@ +{ + "credit": "Made with Blockbench", + "render_type": "minecraft:translucent", + "textures": { + "0": "ariasessentials:block/scrubber/stable_singularity_body", + "1": "ariasessentials:block/scrubber/stable_singularity_inner", + "particle": "ariasessentials:block/scrubber/stable_singularity_body" + }, + "elements": [ + { + "from": [10, 14, 2], + "to": [14, 15, 14], + "faces": { + "north": {"uv": [12.5, 6, 14.25, 6.25], "texture": "#0"}, + "east": {"uv": [11, 3, 15, 3.25], "texture": "#0"}, + "south": {"uv": [12.75, 12.25, 14.5, 12.5], "texture": "#0"}, + "west": {"uv": [11, 3.25, 15, 3.5], "texture": "#0"}, + "up": {"uv": [1.75, 4, 0, 0], "texture": "#0"}, + "down": {"uv": [3.5, 0, 1.75, 4], "texture": "#0"} + } + }, + { + "from": [1, 0, 1], + "to": [6, 1, 15], + "faces": { + "north": {"uv": [12.75, 12.5, 14.5, 12.75], "texture": "#0"}, + "east": {"uv": [11, 3.5, 15, 3.75], "texture": "#0"}, + "south": {"uv": [12.75, 12.75, 14.5, 13], "texture": "#0"}, + "west": {"uv": [11, 3.75, 15, 4], "texture": "#0"}, + "up": {"uv": [5.25, 4, 3.5, 0], "texture": "#0"}, + "down": {"uv": [1.75, 4, 0, 8], "texture": "#0"} + } + }, + { + "from": [6, 0, 1], + "to": [10, 1, 6], + "faces": { + "north": {"uv": [5.75, 8, 6.25, 8.25], "texture": "#0"}, + "east": {"uv": [0.5, 13, 2.25, 13.25], "texture": "#0"}, + "south": {"uv": [6.25, 8, 6.75, 8.25], "texture": "#0"}, + "west": {"uv": [6, 13, 7.75, 13.25], "texture": "#0"}, + "up": {"uv": [5, 13.75, 4.5, 12], "texture": "#0"}, + "down": {"uv": [12.5, 4.5, 12, 6.25], "texture": "#0"} + } + }, + { + "from": [6, 0, 10], + "to": [10, 1, 15], + "faces": { + "north": {"uv": [5.75, 8.25, 6.25, 8.5], "texture": "#0"}, + "east": {"uv": [7.75, 13, 9.5, 13.25], "texture": "#0"}, + "south": {"uv": [6.25, 8.25, 6.75, 8.5], "texture": "#0"}, + "west": {"uv": [9.5, 13, 11.25, 13.25], "texture": "#0"}, + "up": {"uv": [5.5, 13.75, 5, 12], "texture": "#0"}, + "down": {"uv": [6, 12, 5.5, 13.75], "texture": "#0"} + } + }, + { + "from": [10, 0, 1], + "to": [15, 1, 15], + "faces": { + "north": {"uv": [12.75, 13, 14.5, 13.25], "texture": "#0"}, + "east": {"uv": [11, 4, 15, 4.25], "texture": "#0"}, + "south": {"uv": [0.5, 13.25, 2.25, 13.5], "texture": "#0"}, + "west": {"uv": [11, 4.25, 15, 4.5], "texture": "#0"}, + "up": {"uv": [3.5, 8, 1.75, 4], "texture": "#0"}, + "down": {"uv": [5.25, 4, 3.5, 8], "texture": "#0"} + } + }, + { + "from": [1, 1, 2], + "to": [2, 6, 15], + "faces": { + "north": {"uv": [10.25, 13.25, 10.5, 14.75], "texture": "#0"}, + "east": {"uv": [7, 0, 11, 1.5], "texture": "#0"}, + "south": {"uv": [10.5, 13.25, 10.75, 14.75], "texture": "#0"}, + "west": {"uv": [7, 1.5, 11, 3], "texture": "#0"}, + "up": {"uv": [11.25, 8.5, 11, 4.5], "texture": "#0"}, + "down": {"uv": [11.5, 4.5, 11.25, 8.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 11], + "to": [2, 10, 15], + "faces": { + "north": {"uv": [6.75, 8, 7, 8.5], "texture": "#0"}, + "east": {"uv": [4, 8, 5.75, 8.5], "texture": "#0"}, + "south": {"uv": [5.75, 8.5, 6, 9], "texture": "#0"}, + "west": {"uv": [4, 8.5, 5.75, 9], "texture": "#0"}, + "up": {"uv": [2.5, 14.75, 2.25, 13], "texture": "#0"}, + "down": {"uv": [2.75, 13, 2.5, 14.75], "texture": "#0"} + } + }, + { + "from": [1, 10, 2], + "to": [2, 15, 15], + "faces": { + "north": {"uv": [10.75, 13.25, 11, 14.75], "texture": "#0"}, + "east": {"uv": [7, 3, 11, 4.5], "texture": "#0"}, + "south": {"uv": [11, 13.25, 11.25, 14.75], "texture": "#0"}, + "west": {"uv": [7, 4.5, 11, 6], "texture": "#0"}, + "up": {"uv": [11.75, 8.5, 11.5, 4.5], "texture": "#0"}, + "down": {"uv": [12, 4.5, 11.75, 8.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 2], + "to": [2, 10, 6], + "faces": { + "north": {"uv": [6, 8.5, 6.25, 9], "texture": "#0"}, + "east": {"uv": [11.5, 9, 13.25, 9.5], "texture": "#0"}, + "south": {"uv": [6.25, 8.5, 6.5, 9], "texture": "#0"}, + "west": {"uv": [11.5, 9.5, 13.25, 10], "texture": "#0"}, + "up": {"uv": [3, 14.75, 2.75, 13], "texture": "#0"}, + "down": {"uv": [3.25, 13, 3, 14.75], "texture": "#0"} + } + }, + { + "from": [14, 10, 1], + "to": [15, 15, 15], + "faces": { + "north": {"uv": [12.75, 13.25, 13, 14.75], "texture": "#0"}, + "east": {"uv": [7, 6, 11, 7.5], "texture": "#0"}, + "south": {"uv": [13, 13.25, 13.25, 14.75], "texture": "#0"}, + "west": {"uv": [7, 7.5, 11, 9], "texture": "#0"}, + "up": {"uv": [3.75, 16, 3.5, 12], "texture": "#0"}, + "down": {"uv": [4, 12, 3.75, 16], "texture": "#0"} + } + }, + { + "from": [14, 6, 10], + "to": [15, 10, 15], + "faces": { + "north": {"uv": [6.5, 8.5, 6.75, 9], "texture": "#0"}, + "east": {"uv": [11.5, 10, 13.25, 10.5], "texture": "#0"}, + "south": {"uv": [6.75, 8.5, 7, 9], "texture": "#0"}, + "west": {"uv": [6, 12, 7.75, 12.5], "texture": "#0"}, + "up": {"uv": [3.5, 14.75, 3.25, 13], "texture": "#0"}, + "down": {"uv": [6.25, 13.25, 6, 15], "texture": "#0"} + } + }, + { + "from": [14, 6, 1], + "to": [15, 10, 6], + "faces": { + "north": {"uv": [3.5, 9.5, 3.75, 10], "texture": "#0"}, + "east": {"uv": [12, 6.25, 13.75, 6.75], "texture": "#0"}, + "south": {"uv": [3.75, 9.5, 4, 10], "texture": "#0"}, + "west": {"uv": [12, 6.75, 13.75, 7.25], "texture": "#0"}, + "up": {"uv": [6.5, 15, 6.25, 13.25], "texture": "#0"}, + "down": {"uv": [6.75, 13.25, 6.5, 15], "texture": "#0"} + } + }, + { + "from": [14, 1, 1], + "to": [15, 6, 15], + "faces": { + "north": {"uv": [13.25, 13.25, 13.5, 14.75], "texture": "#0"}, + "east": {"uv": [0, 8, 4, 9.5], "texture": "#0"}, + "south": {"uv": [0.5, 13.5, 0.75, 15], "texture": "#0"}, + "west": {"uv": [4, 9, 8, 10.5], "texture": "#0"}, + "up": {"uv": [4.25, 16, 4, 12], "texture": "#0"}, + "down": {"uv": [4.5, 12, 4.25, 16], "texture": "#0"} + } + }, + { + "from": [1, 10, 1], + "to": [14, 15, 2], + "faces": { + "north": {"uv": [8, 9, 11.5, 10.5], "texture": "#0"}, + "east": {"uv": [0.75, 13.5, 1, 15], "texture": "#0"}, + "south": {"uv": [0, 9.5, 3.5, 11], "texture": "#0"}, + "west": {"uv": [1, 13.5, 1.25, 15], "texture": "#0"}, + "up": {"uv": [15.5, 7.5, 12, 7.25], "texture": "#0"}, + "down": {"uv": [15.5, 7.5, 12, 7.75], "texture": "#0"} + } + }, + { + "from": [9, 6, 1], + "to": [14, 10, 2], + "faces": { + "north": {"uv": [0.5, 12.5, 2, 13], "texture": "#0"}, + "east": {"uv": [3.5, 10, 3.75, 10.5], "texture": "#0"}, + "south": {"uv": [2, 12.5, 3.5, 13], "texture": "#0"}, + "west": {"uv": [3.75, 10, 4, 10.5], "texture": "#0"}, + "up": {"uv": [14.75, 10.25, 13.25, 10], "texture": "#0"}, + "down": {"uv": [14.75, 10.25, 13.25, 10.5], "texture": "#0"} + } + }, + { + "from": [1, 6, 1], + "to": [5, 10, 2], + "faces": { + "north": {"uv": [12.5, 4.5, 14, 5], "texture": "#0"}, + "east": {"uv": [10.5, 12.5, 10.75, 13], "texture": "#0"}, + "south": {"uv": [12.5, 5, 14, 5.5], "texture": "#0"}, + "west": {"uv": [10.75, 12.5, 11, 13], "texture": "#0"}, + "up": {"uv": [8.25, 13.75, 6.75, 13.5], "texture": "#0"}, + "down": {"uv": [9.75, 13.5, 8.25, 13.75], "texture": "#0"} + } + }, + { + "from": [1, 1, 1], + "to": [14, 6, 2], + "faces": { + "north": {"uv": [3.5, 10.5, 7, 12], "texture": "#0"}, + "east": {"uv": [1.25, 13.5, 1.5, 15], "texture": "#0"}, + "south": {"uv": [7, 10.5, 10.5, 12], "texture": "#0"}, + "west": {"uv": [1.5, 13.5, 1.75, 15], "texture": "#0"}, + "up": {"uv": [11.25, 12.25, 7.75, 12], "texture": "#0"}, + "down": {"uv": [15.5, 7.75, 12, 8], "texture": "#0"} + } + }, + { + "from": [2, 1, 15], + "to": [14, 6, 15], + "faces": { + "north": {"uv": [10.5, 10.5, 14, 12], "texture": "#0"}, + "east": {"uv": [1.75, 13.5, 2, 15], "texture": "#0"}, + "south": {"uv": [0, 11, 3.5, 12.5], "texture": "#0"}, + "west": {"uv": [2, 13.5, 2.25, 15], "texture": "#0"}, + "up": {"uv": [15.5, 8.25, 12, 8], "texture": "#0"}, + "down": {"uv": [15.5, 8.25, 12, 8.5], "texture": "#0"} + } + }, + { + "from": [2, 6, 14], + "to": [6, 10, 15], + "faces": { + "north": {"uv": [12.5, 5.5, 14, 6], "texture": "#0"}, + "east": {"uv": [11, 12.5, 11.25, 13], "texture": "#0"}, + "south": {"uv": [6, 12.5, 7.5, 13], "texture": "#0"}, + "west": {"uv": [13.75, 6.5, 14, 7], "texture": "#0"}, + "up": {"uv": [15, 13.5, 13.5, 13.25], "texture": "#0"}, + "down": {"uv": [15, 13.5, 13.5, 13.75], "texture": "#0"} + } + }, + { + "from": [10, 6, 14], + "to": [14, 10, 15], + "faces": { + "north": {"uv": [7.5, 12.5, 9, 13], "texture": "#0"}, + "east": {"uv": [6.75, 13.75, 7, 14.25], "texture": "#0"}, + "south": {"uv": [9, 12.5, 10.5, 13], "texture": "#0"}, + "west": {"uv": [7, 13.75, 7.25, 14.25], "texture": "#0"}, + "up": {"uv": [6, 14, 4.5, 13.75], "texture": "#0"}, + "down": {"uv": [15.25, 6.25, 13.75, 6.5], "texture": "#0"} + } + }, + { + "from": [2, 10, 14], + "to": [14, 15, 15], + "faces": { + "north": {"uv": [11, 0, 14.5, 1.5], "texture": "#0"}, + "east": {"uv": [9.75, 13.5, 10, 15], "texture": "#0"}, + "south": {"uv": [11, 1.5, 14.5, 3], "texture": "#0"}, + "west": {"uv": [10, 13.5, 10.25, 15], "texture": "#0"}, + "up": {"uv": [14.75, 12.25, 11.25, 12], "texture": "#0"}, + "down": {"uv": [11.25, 12.25, 7.75, 12.5], "texture": "#0"} + } + }, + { + "from": [6, 14, 10], + "to": [10, 15, 14], + "faces": { + "north": {"uv": [13.75, 7, 14.25, 7.25], "texture": "#0"}, + "east": {"uv": [6.75, 13.25, 8.5, 13.5], "texture": "#0"}, + "south": {"uv": [7.25, 13.75, 7.75, 14], "texture": "#0"}, + "west": {"uv": [8.5, 13.25, 10.25, 13.5], "texture": "#0"}, + "up": {"uv": [11.75, 14, 11.25, 12.25], "texture": "#0"}, + "down": {"uv": [12.25, 12.25, 11.75, 14], "texture": "#0"} + } + }, + { + "from": [6, 14, 2], + "to": [10, 15, 6], + "faces": { + "north": {"uv": [7.75, 13.75, 8.25, 14], "texture": "#0"}, + "east": {"uv": [13.25, 9, 15, 9.25], "texture": "#0"}, + "south": {"uv": [8.25, 13.75, 8.75, 14], "texture": "#0"}, + "west": {"uv": [13.25, 9.25, 15, 9.5], "texture": "#0"}, + "up": {"uv": [12.75, 14, 12.25, 12.25], "texture": "#0"}, + "down": {"uv": [0.5, 12.5, 0, 14.25], "texture": "#0"} + } + }, + { + "from": [2, 14, 2], + "to": [6, 15, 14], + "faces": { + "north": {"uv": [13.25, 9.5, 15, 9.75], "texture": "#0"}, + "east": {"uv": [11, 8.5, 15, 8.75], "texture": "#0"}, + "south": {"uv": [13.25, 9.75, 15, 10], "texture": "#0"}, + "west": {"uv": [11, 8.75, 15, 9], "texture": "#0"}, + "up": {"uv": [7, 4, 5.25, 0], "texture": "#0"}, + "down": {"uv": [7, 4, 5.25, 8], "texture": "#0"} + } + }, + { + "name": "inner", + "from": [2, 1, 2], + "to": [14, 13, 14], + "faces": { + "north": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "east": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "south": {"uv": [0, 0, 16, 16], "texture": "#1", "cullface": "north"}, + "west": {"uv": [0, 0, 16, 16], "texture": "#1"}, + "up": {"uv": [16, 16, 0, 0], "texture": "#1"}, + "down": {"uv": [16, 0, 0, 16], "texture": "#1"} + } + } + ], + "groups": [ + { + "name": "Outer Panels", + "origin": [0, 0, 0], + "color": 0, + "children": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23] + }, + 24 + ] +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk.json new file mode 100644 index 0000000..5827c0b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_block.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_block.json new file mode 100644 index 0000000..aba08a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/steel_catwalk_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json new file mode 100644 index 0000000..7fa1ed7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..34caa59 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_dr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_dr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..d320c85 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_lr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_lr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..1fde452 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_stairs_rr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_stairs_rr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_top.json b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_top.json new file mode 100644 index 0000000..cd9e0e1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_catwalk_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_catwalk_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating.json b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating.json new file mode 100644 index 0000000..1ac7a6c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_floor_grating" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json new file mode 100644 index 0000000..272d64d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_floor_grating_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_floor_grating_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_railing.json b/src/main/resources/assets/ariasessentials/models/block/steel_railing.json new file mode 100644 index 0000000..234af68 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_railing.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_railing" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/steel_table.json b/src/main/resources/assets/ariasessentials/models/block/steel_table.json new file mode 100644 index 0000000..944528a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/steel_table.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/furniture/steel_table" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/tflipflop.json b/src/main/resources/assets/ariasessentials/models/block/tflipflop.json new file mode 100644 index 0000000..ab49651 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/tflipflop.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/logicgates/tflipflop" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/uncrafter.json b/src/main/resources/assets/ariasessentials/models/block/uncrafter.json new file mode 100644 index 0000000..45b4424 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/uncrafter.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/custommodel/uncrafter" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json new file mode 100644 index 0000000..e8b4d15 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/vault_steel_ore_block.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:block/cube_all", + "textures": { + "all": "ariasessentials:block/vault_steel_ore_block" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/block/void.json b/src/main/resources/assets/ariasessentials/models/block/void.json new file mode 100644 index 0000000..56346db --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/void.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/void" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/block/whiteout.json b/src/main/resources/assets/ariasessentials/models/block/whiteout.json new file mode 100644 index 0000000..cb12f53 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/block/whiteout.json @@ -0,0 +1,6 @@ +{ + "parent": "ariasessentials:block/fb/cube", + "textures": { + "all": "ariasessentials:block/thresholds/white" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/item/aurora_compound.json b/src/main/resources/assets/ariasessentials/models/item/aurora_compound.json new file mode 100644 index 0000000..be0adc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/aurora_compound.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/deprecated" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/black.json b/src/main/resources/assets/ariasessentials/models/item/black.json new file mode 100644 index 0000000..43fd342 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/black.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blood_red.json b/src/main/resources/assets/ariasessentials/models/item/blood_red.json new file mode 100644 index 0000000..23383f5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blood_red.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blood_red" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_brick.json b/src/main/resources/assets/ariasessentials/models/item/blue_brick.json new file mode 100644 index 0000000..1713535 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/blue_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_light.json new file mode 100644 index 0000000..ca9338d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile.json new file mode 100644 index 0000000..bb397c5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json new file mode 100644 index 0000000..6ce51fc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json new file mode 100644 index 0000000..8067661 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json new file mode 100644 index 0000000..6530648 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/blue_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/blue_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clear_glass_block.json b/src/main/resources/assets/ariasessentials/models/item/clear_glass_block.json new file mode 100644 index 0000000..43fd342 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clear_glass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_block.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_block.json new file mode 100644 index 0000000..fea28c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_block_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json new file mode 100644 index 0000000..1941abb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_recessed.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_recessed_model" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json new file mode 100644 index 0000000..970dff1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_sastor_corner_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_sastor_corner_model" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_slab.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_slab.json new file mode 100644 index 0000000..bddbf0d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json new file mode 100644 index 0000000..87317c7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_block_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json new file mode 100644 index 0000000..7b02d8a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json new file mode 100644 index 0000000..f9729a1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stained_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stained_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json new file mode 100644 index 0000000..f06c004 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json new file mode 100644 index 0000000..a0efe2a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_vertically_slit.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/engineersdecor/brick/clinker_brick_vertically_slit_model" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/clinker_brick_wall.json b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_wall.json new file mode 100644 index 0000000..ac48af8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/clinker_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/clinker_brick_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cobalt_block.json b/src/main/resources/assets/ariasessentials/models/item/cobalt_block.json new file mode 100644 index 0000000..7b70ab8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cobalt_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cobalt_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cobalt_ingot.json b/src/main/resources/assets/ariasessentials/models/item/cobalt_ingot.json new file mode 100644 index 0000000..cf8d92d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cobalt_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/cobalt_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/item/cobalt_ore.json new file mode 100644 index 0000000..3f9db41 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cobalt_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cobalt_ore" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan.json b/src/main/resources/assets/ariasessentials/models/item/cyan.json new file mode 100644 index 0000000..96ff0f6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_brick.json b/src/main/resources/assets/ariasessentials/models/item/cyan_brick.json new file mode 100644 index 0000000..bb3cd03 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/cyan_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_stairs.json b/src/main/resources/assets/ariasessentials/models/item/cyan_stairs.json new file mode 100644 index 0000000..dd6bbdf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_stairs" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_tile.json b/src/main/resources/assets/ariasessentials/models/item/cyan_tile.json new file mode 100644 index 0000000..fcee8b6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_tile_br.json b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_br.json new file mode 100644 index 0000000..f5bbd92 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_br.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile_br" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json new file mode 100644 index 0000000..0a71f36 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_tile_to_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_tile_to_wall" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json new file mode 100644 index 0000000..8bb9041 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_1.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_wall_variant_1" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json new file mode 100644 index 0000000..671897e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/cyan_wall_variant_2.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/cyan_wall_variant_2" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_light.json new file mode 100644 index 0000000..4697835 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile.json new file mode 100644 index 0000000..8d78ba1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json new file mode 100644 index 0000000..f554d73 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json new file mode 100644 index 0000000..9f46443 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_bed.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_bed.json new file mode 100644 index 0000000..9ff068f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_bed.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_bed", + "textures": { + "particle": "ariasessentials:block/dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_brick.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_brick.json new file mode 100644 index 0000000..47dec36 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/dark_red_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_carpet.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_carpet.json new file mode 100644 index 0000000..11e525e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_carpet.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_red_carpet" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_dye.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_dye.json new file mode 100644 index 0000000..af7f8ab --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_dye.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/dark_red_dye" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json new file mode 100644 index 0000000..95f62dd --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_shulker_box.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/template_shulker_box", + "textures": { + "particle": "ariasessentials:block/dark_red_shulker_box" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dark_red_wool.json b/src/main/resources/assets/ariasessentials/models/item/dark_red_wool.json new file mode 100644 index 0000000..72d2daf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dark_red_wool.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dark_red_wool" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..a71d6d6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/deepslate_eternium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deepslate_eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..81da39a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/deepslate_ilusium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/deprecated" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/deprecated.json b/src/main/resources/assets/ariasessentials/models/item/deprecated.json new file mode 100644 index 0000000..be0adc8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/deprecated.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/deprecated" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_light.json new file mode 100644 index 0000000..22a34ea --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json new file mode 100644 index 0000000..8f8e70a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..c875b79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..3d5a816 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..1b6223c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_blue_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_blue_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_light.json new file mode 100644 index 0000000..2a63895 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json new file mode 100644 index 0000000..30c764c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..326aad1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..34dc40a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..0ab3f79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_green_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_green_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_light.json new file mode 100644 index 0000000..cc400eb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile.json new file mode 100644 index 0000000..3860d03 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json new file mode 100644 index 0000000..17fa1a5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..a4f49d2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json new file mode 100644 index 0000000..9431e23 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json new file mode 100644 index 0000000..4eb9364 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json new file mode 100644 index 0000000..5ae2211 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..b54f233 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..d4f4aad --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..eaf7c2b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/dirty_red_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/dirty_red_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/empty_spawn_egg.json b/src/main/resources/assets/ariasessentials/models/item/empty_spawn_egg.json new file mode 100644 index 0000000..e3ce192 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/empty_spawn_egg.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/empty_spawn_egg" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/encased_singularity.json b/src/main/resources/assets/ariasessentials/models/item/encased_singularity.json new file mode 100644 index 0000000..977d507 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/encased_singularity.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/encased_singularity" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_block.json b/src/main/resources/assets/ariasessentials/models/item/eternium_block.json new file mode 100644 index 0000000..8e9cbe8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/eternium_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_fragment.json b/src/main/resources/assets/ariasessentials/models/item/eternium_fragment.json new file mode 100644 index 0000000..95cb5d3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_fragment.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_fragment" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_ingot.json b/src/main/resources/assets/ariasessentials/models/item/eternium_ingot.json new file mode 100644 index 0000000..b96f26a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_ingot.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_ingot" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_ore.json b/src/main/resources/assets/ariasessentials/models/item/eternium_ore.json new file mode 100644 index 0000000..b1064f7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/eternium_ore_block.json new file mode 100644 index 0000000..5f8ec24 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eternium_rod.json b/src/main/resources/assets/ariasessentials/models/item/eternium_rod.json new file mode 100644 index 0000000..a6507a6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/eternium_rod.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/eternium_rod" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_blue_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_blue_pool_light.json new file mode 100644 index 0000000..47fbc8a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_blue_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_green_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_green_pool_light.json new file mode 100644 index 0000000..42b3128 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_green_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_pool_light.json new file mode 100644 index 0000000..2da8a2a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/filthy_red_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/filthy_red_pool_light.json new file mode 100644 index 0000000..9bc4206 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/filthy_red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/filthy_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_brick.json b/src/main/resources/assets/ariasessentials/models/item/green_brick.json new file mode 100644 index 0000000..f519f4d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/green_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_light.json new file mode 100644 index 0000000..484a2c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile.json new file mode 100644 index 0000000..f873f69 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json new file mode 100644 index 0000000..70bf1ab --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json new file mode 100644 index 0000000..ee60ef1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json new file mode 100644 index 0000000..2bffafb --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/green_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/green_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/ihan_crystal.json b/src/main/resources/assets/ariasessentials/models/item/ihan_crystal.json new file mode 100644 index 0000000..1d9f5c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/ihan_crystal.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/ihan_crystal" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/light_blue_brick.json b/src/main/resources/assets/ariasessentials/models/item/light_blue_brick.json new file mode 100644 index 0000000..bf87794 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/light_blue_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/light_blue_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/lime_brick.json b/src/main/resources/assets/ariasessentials/models/item/lime_brick.json new file mode 100644 index 0000000..c4a52c9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/lime_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/lime_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/magical_scrubber.json b/src/main/resources/assets/ariasessentials/models/item/magical_scrubber.json new file mode 100644 index 0000000..b3adf14 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/magical_scrubber.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/magical_scrubber" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/magma_powder.json b/src/main/resources/assets/ariasessentials/models/item/magma_powder.json new file mode 100644 index 0000000..03f798a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/magma_powder.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/magma_powder" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/melted_ender_pearl.json b/src/main/resources/assets/ariasessentials/models/item/melted_ender_pearl.json new file mode 100644 index 0000000..e15010f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/melted_ender_pearl.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/melted_ender_pearl" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/metal_bar.json b/src/main/resources/assets/ariasessentials/models/item/metal_bar.json new file mode 100644 index 0000000..96985c0 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/metal_bar.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/metal_bar" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/mob_capture_ball.json b/src/main/resources/assets/ariasessentials/models/item/mob_capture_ball.json new file mode 100644 index 0000000..d082c00 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/mob_capture_ball.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/mob_capture_ball" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/nether_vault_steel_ore_block.json b/src/main/resources/assets/ariasessentials/models/item/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..2c0b6c1 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/nether_vault_steel_ore_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/nether_vault_steel_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json new file mode 100644 index 0000000..b3dcca4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_door.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_door" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json new file mode 100644 index 0000000..3518b07 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_planks.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_planks_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json new file mode 100644 index 0000000..7c4605c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json new file mode 100644 index 0000000..656dc43 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/old_industrial_wood_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/old_industrial_wood_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/panzerglass_block.json b/src/main/resources/assets/ariasessentials/models/item/panzerglass_block.json new file mode 100644 index 0000000..852f3e6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/panzerglass_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/panzerglass_block_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/panzerglass_slab.json b/src/main/resources/assets/ariasessentials/models/item/panzerglass_slab.json new file mode 100644 index 0000000..8312f20 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/panzerglass_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/panzerglass_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/partial_item.json b/src/main/resources/assets/ariasessentials/models/item/partial_item.json new file mode 100644 index 0000000..459376f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/partial_item.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/partial_item" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_light.json b/src/main/resources/assets/ariasessentials/models/item/pool_light.json new file mode 100644 index 0000000..b3c0cd5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile.json new file mode 100644 index 0000000..9db5306 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile_slab.json new file mode 100644 index 0000000..886bf6b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile_stairs.json new file mode 100644 index 0000000..74630dc --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/pool_tile_wall.json new file mode 100644 index 0000000..8eaca96 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/raw_cobalt.json b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt.json new file mode 100644 index 0000000..c7ced34 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "ariasessentials:item/raw_cobalt" + } +} diff --git a/src/main/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json new file mode 100644 index 0000000..a0633c4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/raw_cobalt_ore.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/raw_cobalt_ore" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json b/src/main/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json new file mode 100644 index 0000000..b5abf35 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/raw_vault_steel_ore.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/raw_vault_steel_ore" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete.json new file mode 100644 index 0000000..4c30753 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json new file mode 100644 index 0000000..46db292 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json new file mode 100644 index 0000000..395b6d4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json new file mode 100644 index 0000000..b518834 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json new file mode 100644 index 0000000..45b67f8 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json new file mode 100644 index 0000000..d4ab9ae --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_tile_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json new file mode 100644 index 0000000..318665f --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/rebar_concrete_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/rebar_concrete_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_brick.json b/src/main/resources/assets/ariasessentials/models/item/red_brick.json new file mode 100644 index 0000000..1a1ce8c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/red_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_light.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_light.json new file mode 100644 index 0000000..617a8b2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_light.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile.json new file mode 100644 index 0000000..b3af3c3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json new file mode 100644 index 0000000..e1c2dec --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json new file mode 100644 index 0000000..fdc774d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json new file mode 100644 index 0000000..6e6b81c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_pool_tile_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_pool_tile_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/red_stairs.json b/src/main/resources/assets/ariasessentials/models/item/red_stairs.json new file mode 100644 index 0000000..42cfaf7 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_stairs" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_tile.json b/src/main/resources/assets/ariasessentials/models/item/red_tile.json new file mode 100644 index 0000000..4887ad4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_tile.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_tile_br.json b/src/main/resources/assets/ariasessentials/models/item/red_tile_br.json new file mode 100644 index 0000000..4ac4d1d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_tile_br.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile_br" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_tile_to_wall.json b/src/main/resources/assets/ariasessentials/models/item/red_tile_to_wall.json new file mode 100644 index 0000000..0c939a6 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_tile_to_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_tile_to_wall" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_1.json b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_1.json new file mode 100644 index 0000000..a4c9a70 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_1.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_wall_variant_1" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_2.json b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_2.json new file mode 100644 index 0000000..f4d727e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/red_wall_variant_2.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/red_wall_variant_2" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/scrubber_frame.json b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame.json new file mode 100644 index 0000000..1c95da5 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/scrubber_frame" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json new file mode 100644 index 0000000..32cd179 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/scrubber_frame_piece.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/scrubber_frame_piece" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/singularity.json b/src/main/resources/assets/ariasessentials/models/item/singularity.json new file mode 100644 index 0000000..c18ae5c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/singularity.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/singularity" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_block.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_block.json new file mode 100644 index 0000000..daaef79 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_block_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_slab.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_slab.json new file mode 100644 index 0000000..79f29f9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_slab.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_slab_model0_bottom" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_stairs.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_stairs.json new file mode 100644 index 0000000..37b186b --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_stairs_model0" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/slag_brick_wall.json b/src/main/resources/assets/ariasessentials/models/item/slag_brick_wall.json new file mode 100644 index 0000000..6697705 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/slag_brick_wall.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/slag_brick_wall_inventory" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/stable_singularity.json b/src/main/resources/assets/ariasessentials/models/item/stable_singularity.json new file mode 100644 index 0000000..7f2d67d --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/stable_singularity.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/stable_singularity" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk.json new file mode 100644 index 0000000..b63ebe3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_block.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_block.json new file mode 100644 index 0000000..f95cbc4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_block.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_block" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs.json new file mode 100644 index 0000000..c203015 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_dr.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_dr.json new file mode 100644 index 0000000..ef44ad3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_dr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs_dr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_lr.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_lr.json new file mode 100644 index 0000000..a8c54e3 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_lr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs_lr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_rr.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_rr.json new file mode 100644 index 0000000..2cde4f9 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_stairs_rr.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_stairs_rr" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_top.json b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_top.json new file mode 100644 index 0000000..5b6147a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_catwalk_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_catwalk_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating.json b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating.json new file mode 100644 index 0000000..fb687d4 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_floor_grating" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating_top.json b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating_top.json new file mode 100644 index 0000000..d20c2e2 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_floor_grating_top.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_floor_grating_top" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_railing.json b/src/main/resources/assets/ariasessentials/models/item/steel_railing.json new file mode 100644 index 0000000..bcee8bf --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_railing.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_railing" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/steel_table.json b/src/main/resources/assets/ariasessentials/models/item/steel_table.json new file mode 100644 index 0000000..9e4d400 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/steel_table.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/steel_table" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/tflipflop.json b/src/main/resources/assets/ariasessentials/models/item/tflipflop.json new file mode 100644 index 0000000..9e4200e --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/tflipflop.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/tflipflop" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/eiab.json b/src/main/resources/assets/ariasessentials/models/item/tiab.json similarity index 55% rename from src/main/resources/assets/ariasessentials/models/item/eiab.json rename to src/main/resources/assets/ariasessentials/models/item/tiab.json index 47d2f64..4103a7a 100644 --- a/src/main/resources/assets/ariasessentials/models/item/eiab.json +++ b/src/main/resources/assets/ariasessentials/models/item/tiab.json @@ -1,6 +1,6 @@ { "parent": "item/generated", "textures": { - "layer0": "ariasessentials:item/eiab" + "layer0": "ariasessentials:item/tiab" } } \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/uncrafter.json b/src/main/resources/assets/ariasessentials/models/item/uncrafter.json new file mode 100644 index 0000000..61c7f95 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/uncrafter.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/uncrafter" +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/void.json b/src/main/resources/assets/ariasessentials/models/item/void.json new file mode 100644 index 0000000..1e5c307 --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/void.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/void" +} diff --git a/src/main/resources/assets/ariasessentials/models/item/white_brick.json b/src/main/resources/assets/ariasessentials/models/item/white_brick.json new file mode 100644 index 0000000..8ce45df --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/white_brick.json @@ -0,0 +1,6 @@ +{ + "parent": "minecraft:item/generated", + "textures": { + "layer0": "ariasessentials:item/white_brick" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/models/item/whiteout.json b/src/main/resources/assets/ariasessentials/models/item/whiteout.json new file mode 100644 index 0000000..16eb02c --- /dev/null +++ b/src/main/resources/assets/ariasessentials/models/item/whiteout.json @@ -0,0 +1,3 @@ +{ + "parent": "ariasessentials:block/whiteout" +} diff --git a/src/main/resources/assets/ariasessentials/textures/block/black.png b/src/main/resources/assets/ariasessentials/textures/block/black.png new file mode 100644 index 0000000..3c4fc4b Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/black.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/blue_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/blue_pool_light.png new file mode 100644 index 0000000..eccc64a Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/blue_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/blue_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/blue_pool_tile.png new file mode 100644 index 0000000..2119b59 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/blue_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/cobalt_block.png b/src/main/resources/assets/ariasessentials/textures/block/cobalt_block.png new file mode 100644 index 0000000..3598330 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/cobalt_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/cobalt_ore.png b/src/main/resources/assets/ariasessentials/textures/block/cobalt_ore.png new file mode 100644 index 0000000..16e2ed9 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/cobalt_ore.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png b/src/main/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png new file mode 100644 index 0000000..e2a0430 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/compressed_obsidian_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png new file mode 100644 index 0000000..265932b Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/bottom_plate.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png new file mode 100644 index 0000000..2b16ff9 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compression_lid.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png new file mode 100644 index 0000000..e914b79 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/compressor.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/power.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/power.png new file mode 100644 index 0000000..8a632c4 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/power.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png new file mode 100644 index 0000000..e0ebd8d Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/compression_chamber/support0.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dark_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/dark_pool_light.png new file mode 100644 index 0000000..b132aae Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dark_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dark_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dark_pool_tile.png new file mode 100644 index 0000000..1da9ed2 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dark_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dark_red_wool.png b/src/main/resources/assets/ariasessentials/textures/block/dark_red_wool.png new file mode 100644 index 0000000..b1125d3 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dark_red_wool.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png new file mode 100644 index 0000000..8cba5b7 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/deepslate_eternium_ore_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/deprecated.png b/src/main/resources/assets/ariasessentials/textures/block/deprecated.png new file mode 100644 index 0000000..e05d9ac Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/deprecated.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png new file mode 100644 index 0000000..876eeba Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png new file mode 100644 index 0000000..4b7ef9a Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_blue_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_light.png new file mode 100644 index 0000000..8f4a91e Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png new file mode 100644 index 0000000..c41257f Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_green_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_light.png new file mode 100644 index 0000000..4354b65 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png new file mode 100644 index 0000000..33dbfd8 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_light.png new file mode 100644 index 0000000..350c2a3 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile.png new file mode 100644 index 0000000..3e74f1e Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/dirty_red_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/eternium_block.png b/src/main/resources/assets/ariasessentials/textures/block/eternium_block.png new file mode 100644 index 0000000..7e75b23 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/eternium_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/eternium_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/eternium_ore_block.png new file mode 100644 index 0000000..2ba5242 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/eternium_ore_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_blue_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_blue_pool_light.png new file mode 100644 index 0000000..906f9d6 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/filthy_blue_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_green_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_green_pool_light.png new file mode 100644 index 0000000..c46ce44 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/filthy_green_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_pool_light.png new file mode 100644 index 0000000..e8b6fb1 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/filthy_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/filthy_red_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/filthy_red_pool_light.png new file mode 100644 index 0000000..95281a5 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/filthy_red_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/green_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/green_pool_light.png new file mode 100644 index 0000000..4213422 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/green_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/green_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/green_pool_tile.png new file mode 100644 index 0000000..321a472 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/green_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.aseprite b/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.aseprite new file mode 100644 index 0000000..0bc5b12 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.aseprite differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.png b/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.png new file mode 100644 index 0000000..fce8ed1 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/ilusium_portal.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/layered_compressed_obsidian_block.png b/src/main/resources/assets/ariasessentials/textures/block/layered_compressed_obsidian_block.png new file mode 100644 index 0000000..0bbd425 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/layered_compressed_obsidian_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/locked_bar.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/locked_bar.png deleted file mode 100644 index dc4583f..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/block/logicgates/locked_bar.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png deleted file mode 100644 index 12774a5..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/block/logicgates/logic_gate.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/off.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/off.png deleted file mode 100644 index 5dacb6b..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/block/logicgates/off.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png deleted file mode 100644 index 6352937..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/block/logicgates/tflipflop.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch.png deleted file mode 100644 index b460d8b..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png deleted file mode 100644 index 18b18c2..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_off.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png b/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png deleted file mode 100644 index 5401dbf..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/block/logicgates/torch_on.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/nether_vault_steel_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/nether_vault_steel_ore_block.png new file mode 100644 index 0000000..dd5593c Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/nether_vault_steel_ore_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/pool_light.png new file mode 100644 index 0000000..44e1c24 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/pool_tile.png new file mode 100644 index 0000000..2c6e1de Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/raw_cobalt_ore.png b/src/main/resources/assets/ariasessentials/textures/block/raw_cobalt_ore.png new file mode 100644 index 0000000..3b14cfb Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/raw_cobalt_ore.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/red_pool_light.png b/src/main/resources/assets/ariasessentials/textures/block/red_pool_light.png new file mode 100644 index 0000000..b3ff099 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/red_pool_light.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/red_pool_tile.png b/src/main/resources/assets/ariasessentials/textures/block/red_pool_tile.png new file mode 100644 index 0000000..b55d0c5 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/red_pool_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/center_cube.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/center_cube.png new file mode 100644 index 0000000..492b4e1 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/center_cube.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/corner_cube.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/corner_cube.png new file mode 100644 index 0000000..200364e Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/corner_cube.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/frame_bars.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/frame_bars.png new file mode 100644 index 0000000..d7da3f0 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/frame_bars.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/inner_corner_cubes.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/inner_corner_cubes.png new file mode 100644 index 0000000..5ca1723 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/inner_corner_cubes.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png new file mode 100644 index 0000000..42a6f1c Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_old_internal_cube.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_right.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_right.png new file mode 100644 index 0000000..2ef7cdf Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_right.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png new file mode 100644 index 0000000..9f2ba1d Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/scrubber_top.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png new file mode 100644 index 0000000..e6be8b1 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_body.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png b/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png new file mode 100644 index 0000000..c8ceaac Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/scrubber/stable_singularity_inner.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png new file mode 100644 index 0000000..950ac11 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/blood_red.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/cyan.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/cyan.png new file mode 100644 index 0000000..61d4ad3 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/cyan.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_transition.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_transition.png new file mode 100644 index 0000000..202a74b Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_transition.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_w_circle.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_w_circle.png new file mode 100644 index 0000000..b9cc00f Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/cyan_tile_w_circle.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile.png new file mode 100644 index 0000000..1307773 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile_transition.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile_transition.png new file mode 100644 index 0000000..37d7ddc Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/lime_tile_transition.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png new file mode 100644 index 0000000..5e5b9fa Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png new file mode 100644 index 0000000..c8ee90b Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_stairs_inner.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png new file mode 100644 index 0000000..ca85fc7 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_transition_blood_red.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png new file mode 100644 index 0000000..821d386 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/floor/tiles/red_tile_w_circle.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png new file mode 100644 index 0000000..bbb14bb Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_floor_to_wall.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png new file mode 100644 index 0000000..ea096d3 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall2.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall2.png new file mode 100644 index 0000000..05f8b3c Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/cyan_wall2.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite new file mode 100644 index 0000000..a14bc75 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/floor_wall_transition.aseprite differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png new file mode 100644 index 0000000..f53a8a7 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_floor_to_wall.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png new file mode 100644 index 0000000..8477d80 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall2.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall2.png new file mode 100644 index 0000000..88ccbb2 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/lime_wall2.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png new file mode 100644 index 0000000..bb0f88b Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_floor_to_wall.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall.png new file mode 100644 index 0000000..cf18d04 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png new file mode 100644 index 0000000..8f16e27 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/hallway/wall/red_wall2.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/lime.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/lime.png new file mode 100644 index 0000000..c1af956 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/lime.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/void.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/void.png new file mode 100644 index 0000000..d59329c Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/void.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/thresholds/white.png b/src/main/resources/assets/ariasessentials/textures/block/thresholds/white.png new file mode 100644 index 0000000..a449dec Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/thresholds/white.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png b/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png new file mode 100644 index 0000000..c3e411f Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta b/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta new file mode 100644 index 0000000..e96a96a --- /dev/null +++ b/src/main/resources/assets/ariasessentials/textures/block/uncrafter.png.mcmeta @@ -0,0 +1,6 @@ +{ + "animation": { + "frametime": 20, + "interpolate": true + } +} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png new file mode 100644 index 0000000..9d57d10 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_bottom.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite new file mode 100644 index 0000000..462c249 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.aseprite differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png new file mode 100644 index 0000000..af72d66 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/uncrafter_side.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/block/vault_steel_ore_block.png b/src/main/resources/assets/ariasessentials/textures/block/vault_steel_ore_block.png new file mode 100644 index 0000000..0b6e5d7 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/block/vault_steel_ore_block.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/entity/mob_capture_ball.png b/src/main/resources/assets/ariasessentials/textures/entity/mob_capture_ball.png new file mode 100644 index 0000000..1569595 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/entity/mob_capture_ball.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/gui/absorb.png b/src/main/resources/assets/ariasessentials/textures/gui/absorb.png deleted file mode 100644 index 37d83b5..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/gui/absorb.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/gui/hearts.png b/src/main/resources/assets/ariasessentials/textures/gui/hearts.png deleted file mode 100644 index 6047deb..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/gui/hearts.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/blue_brick.png b/src/main/resources/assets/ariasessentials/textures/item/blue_brick.png new file mode 100644 index 0000000..608900e Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/blue_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/clone_ball.png b/src/main/resources/assets/ariasessentials/textures/item/clone_ball.png new file mode 100644 index 0000000..6c4337a Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/clone_ball.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/cobalt_ingot.png b/src/main/resources/assets/ariasessentials/textures/item/cobalt_ingot.png new file mode 100644 index 0000000..d92f5b2 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/cobalt_ingot.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/cobalt_nugget.png b/src/main/resources/assets/ariasessentials/textures/item/cobalt_nugget.png new file mode 100644 index 0000000..48d6737 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/cobalt_nugget.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png b/src/main/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png new file mode 100644 index 0000000..c5aae79 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/compressed_obsidian_sheet.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/crucible.png b/src/main/resources/assets/ariasessentials/textures/item/crucible.png new file mode 100644 index 0000000..4c1cb87 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/crucible.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/cyan_brick.png b/src/main/resources/assets/ariasessentials/textures/item/cyan_brick.png new file mode 100644 index 0000000..5309a28 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/cyan_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/dark_blue_brick.png b/src/main/resources/assets/ariasessentials/textures/item/dark_blue_brick.png new file mode 100644 index 0000000..608900e Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/dark_blue_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/dark_red_brick.png b/src/main/resources/assets/ariasessentials/textures/item/dark_red_brick.png new file mode 100644 index 0000000..539aab8 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/dark_red_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/dark_red_dye.png b/src/main/resources/assets/ariasessentials/textures/item/dark_red_dye.png new file mode 100644 index 0000000..c42d1cb Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/dark_red_dye.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/deprecated.png b/src/main/resources/assets/ariasessentials/textures/item/deprecated.png new file mode 100644 index 0000000..ccce825 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/deprecated.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eiab.png b/src/main/resources/assets/ariasessentials/textures/item/eiab.png deleted file mode 100644 index 128cf9c..0000000 Binary files a/src/main/resources/assets/ariasessentials/textures/item/eiab.png and /dev/null differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eiab.png.mcmeta b/src/main/resources/assets/ariasessentials/textures/item/eiab.png.mcmeta deleted file mode 100644 index 5cc283a..0000000 --- a/src/main/resources/assets/ariasessentials/textures/item/eiab.png.mcmeta +++ /dev/null @@ -1,6 +0,0 @@ -{ - "animation": { - "frametime": 2, - "interpolate": true - } -} \ No newline at end of file diff --git a/src/main/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png b/src/main/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png new file mode 100644 index 0000000..b650de1 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/empty_spawn_egg.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/encased_singularity.png b/src/main/resources/assets/ariasessentials/textures/item/encased_singularity.png new file mode 100644 index 0000000..216367e Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/encased_singularity.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eternium_dust.png b/src/main/resources/assets/ariasessentials/textures/item/eternium_dust.png new file mode 100644 index 0000000..db71805 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/eternium_dust.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eternium_fragment.png b/src/main/resources/assets/ariasessentials/textures/item/eternium_fragment.png new file mode 100644 index 0000000..bc03c74 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/eternium_fragment.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eternium_ingot.png b/src/main/resources/assets/ariasessentials/textures/item/eternium_ingot.png new file mode 100644 index 0000000..55c48ec Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/eternium_ingot.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eternium_ore.png b/src/main/resources/assets/ariasessentials/textures/item/eternium_ore.png new file mode 100644 index 0000000..9db390f Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/eternium_ore.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/eternium_rod.png b/src/main/resources/assets/ariasessentials/textures/item/eternium_rod.png new file mode 100644 index 0000000..9b6e200 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/eternium_rod.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/green_brick.png b/src/main/resources/assets/ariasessentials/textures/item/green_brick.png new file mode 100644 index 0000000..857e6fd Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/green_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/ihan_crystal.png b/src/main/resources/assets/ariasessentials/textures/item/ihan_crystal.png new file mode 100644 index 0000000..18d53b7 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/ihan_crystal.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/light_blue_brick.png b/src/main/resources/assets/ariasessentials/textures/item/light_blue_brick.png new file mode 100644 index 0000000..86a7526 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/light_blue_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/lime_brick.png b/src/main/resources/assets/ariasessentials/textures/item/lime_brick.png new file mode 100644 index 0000000..f44af7d Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/lime_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/magma_powder.png b/src/main/resources/assets/ariasessentials/textures/item/magma_powder.png new file mode 100644 index 0000000..3365a22 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/magma_powder.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/melted_ender_pearl.png b/src/main/resources/assets/ariasessentials/textures/item/melted_ender_pearl.png new file mode 100644 index 0000000..f617ca8 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/melted_ender_pearl.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/mob_capture_ball.png b/src/main/resources/assets/ariasessentials/textures/item/mob_capture_ball.png new file mode 100644 index 0000000..1569595 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/mob_capture_ball.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/partial_item.png b/src/main/resources/assets/ariasessentials/textures/item/partial_item.png new file mode 100644 index 0000000..b08deca Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/partial_item.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/raw_cobalt.png b/src/main/resources/assets/ariasessentials/textures/item/raw_cobalt.png new file mode 100644 index 0000000..9b970af Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/raw_cobalt.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png b/src/main/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png new file mode 100644 index 0000000..228457d Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/raw_vault_steel_ore.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/red_brick.png b/src/main/resources/assets/ariasessentials/textures/item/red_brick.png new file mode 100644 index 0000000..5148c05 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/red_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame.png b/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame.png new file mode 100644 index 0000000..e7ea290 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png b/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png new file mode 100644 index 0000000..ff45339 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/scrubber_frame_piece.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/singularity.aseprite b/src/main/resources/assets/ariasessentials/textures/item/singularity.aseprite new file mode 100644 index 0000000..49657ab Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/singularity.aseprite differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/singularity.png b/src/main/resources/assets/ariasessentials/textures/item/singularity.png new file mode 100644 index 0000000..b33d742 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/singularity.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/super_heated_crucible.png b/src/main/resources/assets/ariasessentials/textures/item/super_heated_crucible.png new file mode 100644 index 0000000..763ba9f Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/super_heated_crucible.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/white_brick.aseprite b/src/main/resources/assets/ariasessentials/textures/item/white_brick.aseprite new file mode 100644 index 0000000..dd54811 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/white_brick.aseprite differ diff --git a/src/main/resources/assets/ariasessentials/textures/item/white_brick.png b/src/main/resources/assets/ariasessentials/textures/item/white_brick.png new file mode 100644 index 0000000..ca40424 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/item/white_brick.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/mob_effect/flight.png b/src/main/resources/assets/ariasessentials/textures/mob_effect/flight.png new file mode 100644 index 0000000..380d0c1 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/mob_effect/flight.png differ diff --git a/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite b/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite new file mode 100644 index 0000000..e8e6015 Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.aseprite differ diff --git a/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.png b/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.png new file mode 100644 index 0000000..08d078e Binary files /dev/null and b/src/main/resources/assets/ariasessentials/textures/mob_effect/seal.png differ diff --git a/src/main/resources/assets/libzontreck/lang/en_us.json b/src/main/resources/assets/libzontreck/lang/en_us.json new file mode 100644 index 0000000..6edf1bb --- /dev/null +++ b/src/main/resources/assets/libzontreck/lang/en_us.json @@ -0,0 +1,9 @@ +{ + "itemGroup.tabs.libzontreck": "Aria's Library", + + "item.libzontreck.chestgui_add": "Add", + "item.libzontreck.chestgui_remove": "Remove", + "item.libzontreck.chestgui_back": "Previous Page", + "item.libzontreck.chestgui_forward": "Next Page", + "item.libzontreck.chestgui_reset": "Reset" +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_add.json b/src/main/resources/assets/libzontreck/models/item/chestgui_add.json new file mode 100644 index 0000000..f4d7910 --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_add.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_add" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_back.json b/src/main/resources/assets/libzontreck/models/item/chestgui_back.json new file mode 100644 index 0000000..5f591c7 --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_back.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_back" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_forward.json b/src/main/resources/assets/libzontreck/models/item/chestgui_forward.json new file mode 100644 index 0000000..25bf73c --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_forward.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_forward" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_remove.json b/src/main/resources/assets/libzontreck/models/item/chestgui_remove.json new file mode 100644 index 0000000..1dc6f1d --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_remove.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_remove" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/models/item/chestgui_reset.json b/src/main/resources/assets/libzontreck/models/item/chestgui_reset.json new file mode 100644 index 0000000..b2052c8 --- /dev/null +++ b/src/main/resources/assets/libzontreck/models/item/chestgui_reset.json @@ -0,0 +1,6 @@ +{ + "parent": "item/generated", + "textures": { + "layer0": "libzontreck:item/chestgui_reset" + } +} \ No newline at end of file diff --git a/src/main/resources/assets/libzontreck/textures/gui/chest_gui.png b/src/main/resources/assets/libzontreck/textures/gui/chest_gui.png new file mode 100644 index 0000000..b3e27f2 Binary files /dev/null and b/src/main/resources/assets/libzontreck/textures/gui/chest_gui.png differ diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_add.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_add.png new file mode 100644 index 0000000..5c06a63 Binary files /dev/null and b/src/main/resources/assets/libzontreck/textures/item/chestgui_add.png differ diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_back.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_back.png new file mode 100644 index 0000000..abdeb0e Binary files /dev/null and b/src/main/resources/assets/libzontreck/textures/item/chestgui_back.png differ diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_forward.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_forward.png new file mode 100644 index 0000000..4da62d2 Binary files /dev/null and b/src/main/resources/assets/libzontreck/textures/item/chestgui_forward.png differ diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_remove.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_remove.png new file mode 100644 index 0000000..191a5ed Binary files /dev/null and b/src/main/resources/assets/libzontreck/textures/item/chestgui_remove.png differ diff --git a/src/main/resources/assets/libzontreck/textures/item/chestgui_reset.png b/src/main/resources/assets/libzontreck/textures/item/chestgui_reset.png new file mode 100644 index 0000000..f033773 Binary files /dev/null and b/src/main/resources/assets/libzontreck/textures/item/chestgui_reset.png differ diff --git a/src/main/resources/data/ariasessentials/dimension/builder.json b/src/main/resources/data/ariasessentials/dimension/builder.json new file mode 100644 index 0000000..b4b1501 --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension/builder.json @@ -0,0 +1,11 @@ +{ + "type": "ariasessentials:builder", + "generator": { + "type": "minecraft:noise", + "settings": "ariasessentials:builder", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + } + } +} diff --git a/src/main/resources/data/ariasessentials/dimension/resource.json b/src/main/resources/data/ariasessentials/dimension/resource.json new file mode 100644 index 0000000..8fe501e --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension/resource.json @@ -0,0 +1,205029 @@ +{ + "type": "ariasessentials:resource", + "generator": { + "type": "minecraft:noise", + "settings": "ariasessentials:resource", + "biome_source": { + "type": "minecraft:multi_noise", + "biomes": [ + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.2, + -1.05 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.2, + -1.05 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1.05, + -0.455 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.455, + -0.19 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -1, + -0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.9333, + -0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.7666, + -0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.5666, + -0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.4, + -0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.2666, + -0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -0.375, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:river", + "parameters": { + "temperature": [ + -0.45, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -0.05, + 0.05 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -0.2225, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.05, + 0.2666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.2666, + 0.4 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.4, + 0.5666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.5666, + 0.7666 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.375, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.7666, + 0.9333 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + -1, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "temperature": [ + -0.45, + 0.2 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "temperature": [ + 0.2, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -1, + -0.45 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "temperature": [ + -0.45, + -0.15 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "temperature": [ + -0.15, + 0.2 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "temperature": [ + 0.2, + 0.55 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -1, + -0.35 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.35, + -0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + -0.1, + 0.1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.1, + 0.3 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + -0.7799 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.3 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.7799, + -0.375 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 0.3 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.3, + 1 + ], + "erosion": [ + -0.375, + -0.2225 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 0.03 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + -0.2225, + 0.05 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + 1 + ], + "erosion": [ + 0.05, + 0.45 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.11, + 0.03 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + 0.03, + 1 + ], + "erosion": [ + 0.45, + 0.55 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 0, + "offset": 0 + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "temperature": [ + 0.55, + 1 + ], + "humidity": [ + 0.3, + 1 + ], + "continentalness": [ + -0.19, + -0.11 + ], + "erosion": [ + 0.55, + 1 + ], + "weirdness": [ + 0.9333, + 1 + ], + "depth": 1, + "offset": 0 + } + }, + { + "biome": "minecraft:dripstone_caves", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + 0.8, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": [ + 0.2, + 0.9 + ], + "offset": 0 + } + }, + { + "biome": "minecraft:lush_caves", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + 0.7, + 1 + ], + "continentalness": [ + -1, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + 1 + ], + "depth": [ + 0.2, + 0.9 + ], + "offset": 0 + } + }, + { + "biome": "minecraft:deep_dark", + "parameters": { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -1, + 1 + ], + "erosion": [ + -1, + -0.375 + ], + "weirdness": [ + -1, + 1 + ], + "depth": 1.1, + "offset": 0 + } + } + ] + } + } +} diff --git a/src/main/resources/data/ariasessentials/dimension_type/builder.json b/src/main/resources/data/ariasessentials/dimension_type/builder.json new file mode 100644 index 0000000..56f4a80 --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension_type/builder.json @@ -0,0 +1,19 @@ +{ + "ultrawarm": false, + "natural": false, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": false, + "has_raids": false, + "has_skylight": true, + "has_ceiling": false, + "coordinate_scale": 1, + "ambient_light": 1, + "logical_height": 384, + "effects": "minecraft:the_end", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -64, + "height": 384, + "monster_spawn_light_level": 0, + "monster_spawn_block_light_limit": 0 +} diff --git a/src/main/resources/data/ariasessentials/dimension_type/resource.json b/src/main/resources/data/ariasessentials/dimension_type/resource.json new file mode 100644 index 0000000..3ae6509 --- /dev/null +++ b/src/main/resources/data/ariasessentials/dimension_type/resource.json @@ -0,0 +1,20 @@ +{ + "ultrawarm": false, + "natural": true, + "piglin_safe": false, + "respawn_anchor_works": false, + "bed_works": false, + "has_raids": true, + "has_skylight": false, + "has_ceiling": false, + "coordinate_scale": 16, + "ambient_light": 1, + "fixed_time": 1, + "logical_height": 384, + "effects": "minecraft:the_end", + "infiniburn": "#minecraft:infiniburn_overworld", + "min_y": -64, + "height": 384, + "monster_spawn_light_level": 0, + "monster_spawn_block_light_limit": 0 +} diff --git a/src/main/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json b/src/main/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json new file mode 100644 index 0000000..18e2942 --- /dev/null +++ b/src/main/resources/data/ariasessentials/forge/biome_modifier/eternium_placer.json @@ -0,0 +1,6 @@ +{ + "type": "forge:add_features", + "features": ["ariasessentials:eternium_oregen_overworld"], + "biomes": "#is_overworld", + "step": "underground_ores" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blood_red.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blood_red.json new file mode 100644 index 0000000..d8b6a6f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blood_red.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blood_red" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blood_red" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_light.json new file mode 100644 index 0000000..0f685b0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json new file mode 100644 index 0000000..f56bfe1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json new file mode 100644 index 0000000..747ea03 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:blue_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:blue_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json new file mode 100644 index 0000000..e7c2814 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/blue_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:blue_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/clear_glass_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/clear_glass_block.json new file mode 100644 index 0000000..9b75f32 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/clear_glass_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clear_glass_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clear_glass_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json new file mode 100644 index 0000000..06f1af8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_recessed.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_recessed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_recessed" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_vertically_slit.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_vertically_slit.json new file mode 100644 index 0000000..fd71e5b --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/clinker_brick_vertically_slit.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:clinker_brick_vertically_slit" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/clinker_brick_vertically_slit" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/compressed_obsidian_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/compressed_obsidian_block.json new file mode 100644 index 0000000..75d70f5 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/compressed_obsidian_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:compressed_obsidian_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/compressed_obsidian_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/compression_chamber.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/compression_chamber.json new file mode 100644 index 0000000..b0425c3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/compression_chamber.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:compression_chamber" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/compression_chamber" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan.json new file mode 100644 index 0000000..1a91675 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json new file mode 100644 index 0000000..00a7616 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json new file mode 100644 index 0000000..de18727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json new file mode 100644 index 0000000..a83f35b --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_br.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile_br" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile_br" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json new file mode 100644 index 0000000..47f76ae --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_tile_to_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_tile_to_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_tile_to_wall" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json new file mode 100644 index 0000000..8601552 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_1.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_wall_variant_1" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_wall_variant_1" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json new file mode 100644 index 0000000..6e81237 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/cyan_wall_variant_2.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:cyan_wall_variant_2" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/cyan_wall_variant_2" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_light.json new file mode 100644 index 0000000..fa9ea34 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json new file mode 100644 index 0000000..d2fb74f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json new file mode 100644 index 0000000..5370c2f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dark_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dark_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json new file mode 100644 index 0000000..9ae067e --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json new file mode 100644 index 0000000..7c85bd2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_red_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_red_carpet" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json new file mode 100644 index 0000000..4d9b6aa --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dark_red_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dark_red_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dark_red_wool" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json new file mode 100644 index 0000000..7e42828 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_eternium_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:deepslate_eternium_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:eternium_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/deepslate_eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_ilusium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_ilusium_ore_block.json new file mode 100644 index 0000000..d89f4ed --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/deepslate_ilusium_ore_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:deepslate_ilusium_ore_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/deepslate_ilusium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_light.json new file mode 100644 index 0000000..74dec93 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json new file mode 100644 index 0000000..9c3f9e8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..88002da --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_blue_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_blue_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..b5a8f14 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_blue_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_blue_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_light.json new file mode 100644 index 0000000..095cc6a --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json new file mode 100644 index 0000000..b489b11 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..47a8222 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_green_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_green_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..5665546 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_green_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_green_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_light.json new file mode 100644 index 0000000..e5becdd --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json new file mode 100644 index 0000000..50ec4cb --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json new file mode 100644 index 0000000..8656feb --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..4fe0dd2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_light.json new file mode 100644 index 0000000..9bb9f77 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json new file mode 100644 index 0000000..b95aef1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..05b10d8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:dirty_red_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:dirty_red_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..4c608d4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/dirty_red_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:dirty_red_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/dirty_red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json new file mode 100644 index 0000000..9015005 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:eternium_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/eternium_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json new file mode 100644 index 0000000..29c4da3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/eternium_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:eternium_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:eternium_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/eternium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_light.json new file mode 100644 index 0000000..eeba2e8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_blue_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_blue_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_blue_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_light.json new file mode 100644 index 0000000..10830c4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_green_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_green_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_light.json new file mode 100644 index 0000000..1efdd9f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_light.json new file mode 100644 index 0000000..8bd7d0f --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/filthy_red_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:filthy_red_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/filthy_red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_light.json new file mode 100644 index 0000000..3ce14d8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json new file mode 100644 index 0000000..56ff231 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json new file mode 100644 index 0000000..a486224 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:green_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:green_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json new file mode 100644 index 0000000..be338ce --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/green_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:green_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/green_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_block.json new file mode 100644 index 0000000..0e11678 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:ilusium_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/ilusium_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_ore_block.json new file mode 100644 index 0000000..79c6004 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/ilusium_ore_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:ilusium_ore_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/ilusium_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/item_scrubber.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/item_scrubber.json new file mode 100644 index 0000000..cf5ffdc --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/item_scrubber.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:item_scrubber" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/item_scrubber" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/layered_compressed_obsidian_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/layered_compressed_obsidian_block.json new file mode 100644 index 0000000..6e6efc1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/layered_compressed_obsidian_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:layered_compressed_obsidian_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/layered_compressed_obsidian_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/magical_scrubber.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/magical_scrubber.json new file mode 100644 index 0000000..ef6dc9a --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/magical_scrubber.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:magical_scrubber" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/magical_scrubber" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/nether_vault_steel_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/nether_vault_steel_ore_block.json new file mode 100644 index 0000000..c4db0e6 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/nether_vault_steel_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:nether_vault_steel_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:raw_vault_steel_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/nether_vault_steel_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_light.json new file mode 100644 index 0000000..d4ceb07 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json new file mode 100644 index 0000000..d889612 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json new file mode 100644 index 0000000..64f9aa4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json new file mode 100644 index 0000000..329c156 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json new file mode 100644 index 0000000..552e5ce --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/pool_tile_wall.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:pool_tile_wall", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:pool_tile_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/pool_tile_wall" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_light.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_light.json new file mode 100644 index 0000000..cf07a69 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_light.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_light" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_light" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json new file mode 100644 index 0000000..eef2727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json new file mode 100644 index 0000000..36a67d8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "ariasessentials:red_pool_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:red_pool_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile_slab" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json new file mode 100644 index 0000000..17d55ae --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_pool_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_pool_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_pool_tile_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json new file mode 100644 index 0000000..48d5d2d --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_stairs" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile.json new file mode 100644 index 0000000..07caedf --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json new file mode 100644 index 0000000..64a584d --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_br.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile_br" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile_br" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json new file mode 100644 index 0000000..ebbce07 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_tile_to_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_tile_to_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_tile_to_wall" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json new file mode 100644 index 0000000..abdde10 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_1.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_wall_variant_1" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_wall_variant_1" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json new file mode 100644 index 0000000..1e8c416 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/red_wall_variant_2.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:red_wall_variant_2" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/red_wall_variant_2" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/stable_singularity.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/stable_singularity.json new file mode 100644 index 0000000..c82e415 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/stable_singularity.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:stable_singularity" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/stable_singularity" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/uncrafter.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/uncrafter.json new file mode 100644 index 0000000..fe0eb19 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/uncrafter.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:uncrafter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/uncrafter" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/vault_steel_ore_block.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/vault_steel_ore_block.json new file mode 100644 index 0000000..eac8695 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/vault_steel_ore_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "ariasessentials:vault_steel_ore_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "ariasessentials:raw_vault_steel_ore" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/vault_steel_ore_block" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/void.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/void.json new file mode 100644 index 0000000..beb2118 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/void.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:void" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/void" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/loot_tables/blocks/whiteout.json b/src/main/resources/data/ariasessentials/loot_tables/blocks/whiteout.json new file mode 100644 index 0000000..d253f21 --- /dev/null +++ b/src/main/resources/data/ariasessentials/loot_tables/blocks/whiteout.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "ariasessentials:whiteout" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "ariasessentials:blocks/whiteout" +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/blue_brick.json b/src/main/resources/data/ariasessentials/recipes/blue_brick.json new file mode 100644 index 0000000..7393437 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/blue_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:blue_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:blue_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json b/src/main/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json new file mode 100644 index 0000000..3641ee4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/brimstone_to_sulfur.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "tag": "forge:brimstone" + } + ], + "result": { + "item": "mekanism:sulfur_dust", + "count": 1 + } + } \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/crushing_brimstone.json b/src/main/resources/data/ariasessentials/recipes/crushing_brimstone.json new file mode 100644 index 0000000..6dfd300 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/crushing_brimstone.json @@ -0,0 +1,12 @@ +{ + "type": "mekanism:crushing", + "input": { + "ingredient": { + "tag": "forge:brimstone" + } + }, + "output": { + "item": "mekanism:dust_sulfur", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/cyan_brick.json b/src/main/resources/data/ariasessentials/recipes/cyan_brick.json new file mode 100644 index 0000000..735ac43 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/cyan_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:cyan_dye" + } + ], + "result": { + "item": "ariasessentials:cyan_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/dark_red_brick.json b/src/main/resources/data/ariasessentials/recipes/dark_red_brick.json new file mode 100644 index 0000000..a1d1e4c --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dark_red_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "ariasessentials:dark_red_dye" + } + ], + "result": { + "item": "ariasessentials:dark_red_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/dark_red_dye.json b/src/main/resources/data/ariasessentials/recipes/dark_red_dye.json new file mode 100644 index 0000000..41e39a9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dark_red_dye.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:red_dye" + }, + { + "item": "minecraft:black_dye" + } + ], + "result": { + "item": "ariasessentials:dark_red_dye", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json new file mode 100644 index 0000000..9c4ea37 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_carpet.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "carpet", + "ingredients": [ + { + "item": "ariasessentials:dark_red_dye" + }, + [ + { + "item": "minecraft:black_carpet" + }, + { + "item": "minecraft:blue_carpet" + }, + { + "item": "minecraft:brown_carpet" + }, + { + "item": "minecraft:cyan_carpet" + }, + { + "item": "minecraft:gray_carpet" + }, + { + "item": "minecraft:green_carpet" + }, + { + "item": "minecraft:light_blue_carpet" + }, + { + "item": "minecraft:light_gray_carpet" + }, + { + "item": "minecraft:lime_carpet" + }, + { + "item": "minecraft:magenta_carpet" + }, + { + "item": "minecraft:orange_carpet" + }, + { + "item": "minecraft:pink_carpet" + }, + { + "item": "minecraft:purple_carpet" + }, + { + "item": "minecraft:red_carpet" + }, + { + "item": "minecraft:yellow_carpet" + }, + { + "item": "minecraft:white_carpet" + } + ] + ], + "result": { + "item": "ariasessentials:dark_red_carpet" + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/dye_dark_red_wool.json b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_wool.json new file mode 100644 index 0000000..dd22f01 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/dye_dark_red_wool.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + { + "item": "ariasessentials:dark_red_dye" + }, + [ + { + "item": "minecraft:black_wool" + }, + { + "item": "minecraft:blue_wool" + }, + { + "item": "minecraft:brown_wool" + }, + { + "item": "minecraft:cyan_wool" + }, + { + "item": "minecraft:gray_wool" + }, + { + "item": "minecraft:green_wool" + }, + { + "item": "minecraft:light_blue_wool" + }, + { + "item": "minecraft:light_gray_wool" + }, + { + "item": "minecraft:lime_wool" + }, + { + "item": "minecraft:magenta_wool" + }, + { + "item": "minecraft:orange_wool" + }, + { + "item": "minecraft:pink_wool" + }, + { + "item": "minecraft:purple_wool" + }, + { + "item": "minecraft:yellow_wool" + }, + { + "item": "minecraft:white_wool" + }, + { + "item": "minecraft:red_wool" + } + ] + ], + "result": { + "item": "ariasessentials:dark_red_wool" + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/empty_spawn_egg.json b/src/main/resources/data/ariasessentials/recipes/empty_spawn_egg.json new file mode 100644 index 0000000..fa0a4b2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/empty_spawn_egg.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CC", + "CC" + ], + "key": { + "C": { + "item": "minecraft:egg" + } + }, + "result": { + "item": "ariasessentials:empty_spawn_egg", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/encased_singularity.json b/src/main/resources/data/ariasessentials/recipes/encased_singularity.json new file mode 100644 index 0000000..3f94894 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/encased_singularity.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "QQQ", + "QZQ", + "QQQ" + ], + "key": { + "Q": { + "tag": "forge:stone" + }, + "Z": { + "item": "ariasessentials:stable_singularity" + } + }, + "result": { + "item": "ariasessentials:encased_singularity", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_block.json b/src/main/resources/data/ariasessentials/recipes/eternium_block.json new file mode 100644 index 0000000..db703be --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_block.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC", + "CCC", + "CCC" + ], + "key": { + "C": { + "item": "ariasessentials:eternium_ingot" + } + }, + "result": { + "item": "ariasessentials:eternium_block", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json b/src/main/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json new file mode 100644 index 0000000..4ca9bbd --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_block_to_ingot.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:eternium_block" + } + ], + "result": { + "item": "ariasessentials:eternium_ingot", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_ingot.json b/src/main/resources/data/ariasessentials/recipes/eternium_ingot.json new file mode 100644 index 0000000..5858a82 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_ingot.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:smelting", + "ingredient": [ + { + "item": "ariasessentials:eternium_ore" + }, + { + "item": "ariasessentials:eternium_ore_block" + }, + { + "item": "ariasessentials:deepslate_eternium_ore_block" + } + ], + "result": "ariasessentials:eternium_ingot", + "experience": 0.5, + "cookingtime": 25 +} diff --git a/src/main/resources/data/ariasessentials/recipes/eternium_rod.json b/src/main/resources/data/ariasessentials/recipes/eternium_rod.json new file mode 100644 index 0000000..940a373 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/eternium_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": + [ + "ccc", + "ggg", + "ccc"], + "key": { + "c": { + "item": "minecraft:obsidian" + }, + "g": { + "tag": "forge:ingots/eternium" + } + }, + "result": { + "item": "ariasessentials:eternium_rod", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/green_brick.json b/src/main/resources/data/ariasessentials/recipes/green_brick.json new file mode 100644 index 0000000..3c00af7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/green_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:green_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:green_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/holosphere.json.old b/src/main/resources/data/ariasessentials/recipes/holosphere.json.old new file mode 100644 index 0000000..8747ed3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/holosphere.json.old @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " I ", + "IXI", + " I " + ], + "key": { + "X": { + "item": "minecraft:iron_block" + }, + "I": { + "item": "minecraft:iron_ingot" + } + }, + "result": { + "item": "tetra:holo", + "count": 1, + "nbt": { + "id": "9503de92-046c-4d61-8afe-8c0d71c6afae", + "holo/core": "holo/core", + "holo/core_material": "core/dim", + "holo/frame": "holo/frame", + "holo/frame_material": "frame/ancient" + } + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/ihan_crystal.json b/src/main/resources/data/ariasessentials/recipes/ihan_crystal.json new file mode 100644 index 0000000..995affa --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/ihan_crystal.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + " F ", + "FGF", + " F " + ], + "key": { + "F": { + "item": "forge:ingots/eternium" + }, + "G": { + "item": "minecraft:ender_pearl" + } + }, + "result": { + "item": "ariasessentials:ihan_crystal", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json b/src/main/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json new file mode 100644 index 0000000..aca8422 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/leather_from_rotten_flesh.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "ingredient": [ + { + "item": "minecraft:rotten_flesh" + } + ], + "result": "minecraft:leather", + "experience": 3, + "cookingtime": 48 +} diff --git a/src/main/resources/data/ariasessentials/recipes/light_blue_brick.json b/src/main/resources/data/ariasessentials/recipes/light_blue_brick.json new file mode 100644 index 0000000..085801b --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/light_blue_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:light_blue_dye" + } + ], + "result": { + "item": "ariasessentials:light_blue_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/lime_brick.json b/src/main/resources/data/ariasessentials/recipes/lime_brick.json new file mode 100644 index 0000000..372ee4e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/lime_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:lime_dye" + }, + { + "item": "minecraft:brick" + } + ], + "result": { + "item": "ariasessentials:lime_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/magma.json b/src/main/resources/data/ariasessentials/recipes/magma.json new file mode 100644 index 0000000..1aac210 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/magma.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "FFF", + "FFF", + "FFF" + ], + "key": { + "F": { + "item": "ariasessentials:magma_powder" + } + }, + "result": { + "item": "minecraft:magma_block", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/magma_powder.json b/src/main/resources/data/ariasessentials/recipes/magma_powder.json new file mode 100644 index 0000000..7f511ae --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/magma_powder.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "F" + ], + "key": { + "F": { + "item": "minecraft:magma_block" + } + }, + "result": { + "item": "ariasessentials:magma_powder", + "count": 9 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/mob_capture_ball.json b/src/main/resources/data/ariasessentials/recipes/mob_capture_ball.json new file mode 100644 index 0000000..321780a --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/mob_capture_ball.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "XXX", + "XYX", + "XXX" + ], + "key": { + "X": { + "tag": "forge:ingots/eternium" + }, + "Y": { + "item": "minecraft:stone_button" + } + }, + "result": { + "item": "ariasessentials:mob_capture_ball", + "count": 1 + } +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/red_brick.json b/src/main/resources/data/ariasessentials/recipes/red_brick.json new file mode 100644 index 0000000..7099cd9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/red_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:red_dye" + } + ], + "result": { + "item": "ariasessentials:red_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json new file mode 100644 index 0000000..95fc727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_chunk_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_chunk" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json new file mode 100644 index 0000000..95fc727 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_chunk" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json new file mode 100644 index 0000000..5df9c24 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/sandpaper/bop_rosequartz_shard_polish.json @@ -0,0 +1,13 @@ +{ + "type": "create:sandpaper_polishing", + "ingredients": [ + { + "item": "biomesoplenty:rose_quartz_shard" + } + ], + "results": [ + { + "item": "create:polished_rose_quartz" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json b/src/main/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json new file mode 100644 index 0000000..f19f69e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/tetra/seeping_bedrock.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CCC", + "CGC", + "CCC" + ], + "key": { + "C": { + "item": "minecraft:magma_block" + }, + "G": { + "item": "minecraft:bedrock" + } + }, + "result": { + "item": "tetra:seeping_bedrock", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json new file mode 100644 index 0000000..993440c --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:cyan_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:cyan", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json new file mode 100644 index 0000000..9689919 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + } + }, + "result": { + "item": "ariasessentials:cyan_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json new file mode 100644 index 0000000..cf074e5 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json new file mode 100644 index 0000000..aa34499 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_br.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile_br", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json new file mode 100644 index 0000000..bb535c4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_tile_to_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_tile_to_wall", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json new file mode 100644 index 0000000..3eb014a --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_1.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_wall_variant_1", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json new file mode 100644 index 0000000..518fd37 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/cyan/cyan_wall_variant_2.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:cyan" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:cyan_wall_variant_2", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json new file mode 100644 index 0000000..bfb57c6 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:blue_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json new file mode 100644 index 0000000..99dbae0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json new file mode 100644 index 0000000..350a2c3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json new file mode 100644 index 0000000..ad4bd78 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json new file mode 100644 index 0000000..3ac488e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/blue_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "ariasessentials:blue_brick" + }, + "B": { + "item": "ariasessentials:cyan_brick" + }, + "C": { + "item": "ariasessentials:light_blue_brick" + } + }, + "result": { + "item": "ariasessentials:blue_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json new file mode 100644 index 0000000..34c3935 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dark_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dark_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json new file mode 100644 index 0000000..dc80150 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dark_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "minecraft:white_concrete" + }, + "B": { + "item": "minecraft:blue_terracotta" + } + }, + "result": { + "item": "ariasessentials:dark_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json new file mode 100644 index 0000000..0214773 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:blue_pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_blue_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json new file mode 100644 index 0000000..ef7113b --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json new file mode 100644 index 0000000..cc4f622 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json new file mode 100644 index 0000000..9178499 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_blue_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_blue_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json new file mode 100644 index 0000000..c7d3556 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/dirty_blue_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:blue_pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_blue_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json new file mode 100644 index 0000000..3a00e4e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/blue/filthy_blue_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_blue_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_blue_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json new file mode 100644 index 0000000..ee881a7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json new file mode 100644 index 0000000..fd33533 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json new file mode 100644 index 0000000..bf5e481 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json new file mode 100644 index 0000000..fc77ade --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json new file mode 100644 index 0000000..9bfed4f --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/dirty_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json new file mode 100644 index 0000000..4657ac0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/filthy_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json new file mode 100644 index 0000000..38e94d4 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json new file mode 100644 index 0000000..90aea35 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json new file mode 100644 index 0000000..cfdccdd --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json new file mode 100644 index 0000000..57fd406 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:pool_tile" + } + }, + "result": { + "item": "ariasessentials:pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json new file mode 100644 index 0000000..6720029 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/clean/pool_tiles.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:white_brick" + } + }, + "result": { + "item": "ariasessentials:pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json new file mode 100644 index 0000000..1ac2e8a --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:pool_light" + }, + { + "item": "minecraft:slime_ball" + } + ], + "result": { + "item": "ariasessentials:dirty_green_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json new file mode 100644 index 0000000..a220487 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json new file mode 100644 index 0000000..f8266ec --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json new file mode 100644 index 0000000..a38b332 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_green_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json new file mode 100644 index 0000000..8f1ec57 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/dirty_green_pool_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:slime_ball" + }, + { + "item": "ariasessentials:green_pool_tile" + } + ], + "result": { + "item": "ariasessentials:dirty_green_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json new file mode 100644 index 0000000..98f88b1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/filthy_green_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_green_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_green_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json new file mode 100644 index 0000000..5fa5977 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:green_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json new file mode 100644 index 0000000..c22d7c9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json new file mode 100644 index 0000000..af9f7db --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json new file mode 100644 index 0000000..a63a608 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:green_pool_tile" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json new file mode 100644 index 0000000..c44b7b0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/green/green_pool_tiles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABB", + "BAA", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:lime_brick" + }, + "B": { + "item": "ariasessentials:green_brick" + } + }, + "result": { + "item": "ariasessentials:green_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json new file mode 100644 index 0000000..d0bd6c0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:red_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:dirty_red_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json new file mode 100644 index 0000000..8ad983e --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json new file mode 100644 index 0000000..384fac9 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json new file mode 100644 index 0000000..ef50615 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:dirty_red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json new file mode 100644 index 0000000..94623dc --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/dirty_red_pool_tiles.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AB", + "BA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + }, + "B": { + "item": "minecraft:slime_ball" + } + }, + "result": { + "item": "ariasessentials:dirty_red_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json new file mode 100644 index 0000000..f218e76 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/filthy_red_pool_light.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "ariasessentials:dirty_red_pool_light" + }, + { + "item": "minecraft:slime_block" + } + ], + "result": { + "item": "ariasessentials:filthy_red_pool_light", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json new file mode 100644 index 0000000..b297490 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_light.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + }, + "B": { + "item": "minecraft:glowstone" + } + }, + "result": { + "item": "ariasessentials:red_pool_light", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json new file mode 100644 index 0000000..b19f6b3 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_slab", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json new file mode 100644 index 0000000..e4c18b8 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json new file mode 100644 index 0000000..0686737 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tile_wall.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:red_pool_tile" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile_wall", + "count": 6 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json new file mode 100644 index 0000000..5698583 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/pool/red/red_pool_tiles.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "CAB", + "ABC", + "BAC" + ], + "key": { + "A": { + "item": "ariasessentials:red_brick" + }, + "B": { + "item": "ariasessentials:dark_red_brick" + }, + "C": { + "item": "minecraft:brick" + } + }, + "result": { + "item": "ariasessentials:red_pool_tile", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json new file mode 100644 index 0000000..0fbcc41 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/blood_red.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:red_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:blood_red", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json new file mode 100644 index 0000000..8bc42d0 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "A ", + "AA ", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + } + }, + "result": { + "item": "ariasessentials:red_stairs", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json new file mode 100644 index 0000000..af1edd1 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "ABA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json new file mode 100644 index 0000000..f70a201 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_br.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "AAA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile_br", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json new file mode 100644 index 0000000..f945bdb --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_tile_to_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "BAB", + "ABA" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_tile_to_wall", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json new file mode 100644 index 0000000..70492cb --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_1.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_wall_variant_1", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json new file mode 100644 index 0000000..5808d47 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/red/red_wall_variant_2.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "BAB", + "AAA", + "BAB" + ], + "key": { + "A": { + "item": "ariasessentials:blood_red" + }, + "B": { + "item": "ariasessentials:whiteout" + } + }, + "result": { + "item": "ariasessentials:red_wall_variant_2", + "count": 2 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/void.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/void.json new file mode 100644 index 0000000..ac7dccd --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/void.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:black_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:void", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json new file mode 100644 index 0000000..ad6f1de --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/thresholds/decorative/whiteout.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": [ + "AAA", + "ABA", + "AAA" + ], + "key": { + "A": { + "item": "minecraft:white_wool" + }, + "B": { + "item": "minecraft:obsidian" + } + }, + "result": { + "item": "ariasessentials:whiteout", + "count": 4 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/unstable_singularity.json b/src/main/resources/data/ariasessentials/recipes/unstable_singularity.json new file mode 100644 index 0000000..6c5edd2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/unstable_singularity.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "pattern": ["cb"], + "key": { + "c": { + "item": "minecraft:feather" + }, + "b": { + "item": "ariasessentials:stable_singularity" + } + }, + "result": { + "item": "ariasessentials:singularity", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/recipes/white_brick.json b/src/main/resources/data/ariasessentials/recipes/white_brick.json new file mode 100644 index 0000000..c1e9721 --- /dev/null +++ b/src/main/resources/data/ariasessentials/recipes/white_brick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + { + "item": "minecraft:brick" + }, + { + "item": "minecraft:white_dye" + } + ], + "result": { + "item": "ariasessentials:white_brick", + "count": 1 + } +} diff --git a/src/main/resources/data/ariasessentials/tags/blocks/brimstone.json b/src/main/resources/data/ariasessentials/tags/blocks/brimstone.json new file mode 100644 index 0000000..4b0beca --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/brimstone.json @@ -0,0 +1,6 @@ +{ + "values": [ + "biomesoplenty:brimstone", + "byg:brimstone" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/catwalk.json b/src/main/resources/data/ariasessentials/tags/blocks/catwalk.json deleted file mode 100644 index 124a07c..0000000 --- a/src/main/resources/data/ariasessentials/tags/blocks/catwalk.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "values": [ - "ariasessentials:steel_catwalk", - "ariasessentials:steel_catwalk_top" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/deprecated.json b/src/main/resources/data/ariasessentials/tags/blocks/deprecated.json new file mode 100644 index 0000000..d6649e7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/deprecated.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json b/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json index 6fcf470..8491c22 100644 --- a/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json +++ b/src/main/resources/data/ariasessentials/tags/blocks/engineersdecor.json @@ -1,8 +1,6 @@ { "values": [ "ariasessentials:clinker_brick_block", - "ariasessentials:clinker_brick_recessed", - "ariasessentials:clinker_brick_vertically_slit", "ariasessentials:clinker_brick_slab", "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_wall", @@ -26,18 +24,6 @@ "ariasessentials:rebar_concrete_tile_stairs", "ariasessentials:panzerglass_block", - "ariasessentials:panzerglass_slab", - - "ariasessentials:steel_catwalk", - "ariasessentials:steel_catwalk_top", - "ariasessentials:steel_floor_grating", - "ariasessentials:steel_floor_grating_top", - "ariasessentials:steel_catwalk_stairs", - "ariasessentials:steel_railing", - "ariasessentials:steel_catwalk_stairs_lr", - "ariasessentials:steel_catwalk_stairs_rr", - "ariasessentials:steel_catwalk_stairs_dr", - "ariasessentials:steel_table", - "ariasessentials:steel_catwalk_block" + "ariasessentials:panzerglass_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/plain_concretes.json b/src/main/resources/data/ariasessentials/tags/blocks/plain_concrete.json similarity index 100% rename from src/main/resources/data/ariasessentials/tags/blocks/plain_concretes.json rename to src/main/resources/data/ariasessentials/tags/blocks/plain_concrete.json diff --git a/src/main/resources/data/ariasessentials/tags/blocks/pool_tiles.json b/src/main/resources/data/ariasessentials/tags/blocks/pool_tiles.json new file mode 100644 index 0000000..6a45954 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/pool_tiles.json @@ -0,0 +1,56 @@ +{ + "values": [ + + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_light", + "ariasessentials:filthy_pool_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_light", + "ariasessentials:filthy_green_pool_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_light", + "ariasessentials:filthy_blue_pool_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_light", + "ariasessentials:filthy_red_pool_light" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/cyan.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/cyan.json new file mode 100644 index 0000000..cadd0e7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/cyan.json @@ -0,0 +1,11 @@ +{ + "values": [ + "ariasessentials:cyan", + "ariasessentials:cyan_tile", + "ariasessentials:cyan_stairs", + "ariasessentials:cyan_tile_br", + "ariasessentials:cyan_tile_to_wall", + "ariasessentials:cyan_wall", + "ariasessentials:cyan_wall2" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/lime.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/lime.json new file mode 100644 index 0000000..a45a882 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/lime.json @@ -0,0 +1,11 @@ +{ + "values": [ + "ariasessentials:lime", + "ariasessentials:lime_tile", + "ariasessentials:lime_stairs", + "ariasessentials:lime_tile_br", + "ariasessentials:lime_tile_to_wall", + "ariasessentials:lime_wall", + "ariasessentials:lime_wall2" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/pool.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/pool.json new file mode 100644 index 0000000..8640f4a --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/pool.json @@ -0,0 +1,55 @@ +{ + "values": [ + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_light", + "ariasessentials:filthy_pool_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_light", + "ariasessentials:filthy_green_pool_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_light", + "ariasessentials:filthy_blue_pool_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_light", + "ariasessentials:filthy_red_pool_light" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/thresholds/red.json b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/red.json new file mode 100644 index 0000000..f67523f --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/thresholds/red.json @@ -0,0 +1,11 @@ +{ + "values": [ + "ariasessentials:blood_red", + "ariasessentials:red_tile", + "ariasessentials:red_stairs", + "ariasessentials:red_tile_br", + "ariasessentials:red_tile_to_wall", + "ariasessentials:red_wall", + "ariasessentials:red_wall2" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables.json b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables.json new file mode 100644 index 0000000..b0f2ed2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#ariasessentials:uncrafting_tables/uncrafter" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables/uncrafter.json b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables/uncrafter.json new file mode 100644 index 0000000..cf5be9c --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/blocks/uncrafting_tables/uncrafter.json @@ -0,0 +1,6 @@ +{ + "values": [ + "twilightforest:uncrafting_table", + "minecraft:crafting_table" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/deprecated.json b/src/main/resources/data/ariasessentials/tags/items/deprecated.json new file mode 100644 index 0000000..d6649e7 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/deprecated.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json b/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json index 0178d56..8491c22 100644 --- a/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json +++ b/src/main/resources/data/ariasessentials/tags/items/engineersdecor.json @@ -1,8 +1,6 @@ { "values": [ "ariasessentials:clinker_brick_block", - "ariasessentials:clinker_brick_recessed", - "ariasessentials:clinker_brick_vertically_slit", "ariasessentials:clinker_brick_slab", "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_wall", @@ -11,8 +9,6 @@ "ariasessentials:clinker_brick_stained_slab", "ariasessentials:clinker_brick_stained_stairs", - "ariasessentials:clinker_brick_sastor_corner_block", - "ariasessentials:slag_brick_block", "ariasessentials:slag_brick_slab", "ariasessentials:slag_brick_stairs", @@ -28,18 +24,6 @@ "ariasessentials:rebar_concrete_tile_stairs", "ariasessentials:panzerglass_block", - "ariasessentials:panzerglass_slab", - - "ariasessentials:steel_catwalk", - "ariasessentials:steel_catwalk_top", - "ariasessentials:steel_floor_grating", - "ariasessentials:steel_floor_grating_top", - "ariasessentials:steel_catwalk_stairs", - "ariasessentials:steel_railing", - "ariasessentials:steel_catwalk_stairs_lr", - "ariasessentials:steel_catwalk_stairs_rr", - "ariasessentials:steel_catwalk_stairs_dr", - "ariasessentials:steel_table", - "ariasessentials:steel_catwalk_block" + "ariasessentials:panzerglass_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/plain_concretes.json b/src/main/resources/data/ariasessentials/tags/items/plain_concretes.json deleted file mode 100644 index b53590f..0000000 --- a/src/main/resources/data/ariasessentials/tags/items/plain_concretes.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "replace": false, - "values": [ - "minecraft:black_concrete_powder", - "minecraft:blue_concrete_powder", - "minecraft:brown_concrete_powder", - "minecraft:cyan_concrete_powder", - "minecraft:gray_concrete_powder", - "minecraft:green_concrete_powder", - "minecraft:light_blue_concrete_powder", - "minecraft:light_gray_concrete_powder", - "minecraft:lime_concrete_powder", - "minecraft:magenta_concrete_powder", - "minecraft:orange_concrete_powder", - "minecraft:pink_concrete_powder", - "minecraft:purple_concrete_powder", - "minecraft:red_concrete_powder", - "minecraft:white_concrete_powder", - "minecraft:yellow_concrete_powder", - "minecraft:black_concrete", - "minecraft:blue_concrete", - "minecraft:brown_concrete", - "minecraft:cyan_concrete", - "minecraft:gray_concrete", - "minecraft:green_concrete", - "minecraft:light_blue_concrete", - "minecraft:light_gray_concrete", - "minecraft:lime_concrete", - "minecraft:magenta_concrete", - "minecraft:orange_concrete", - "minecraft:pink_concrete", - "minecraft:purple_concrete", - "minecraft:red_concrete", - "minecraft:white_concrete", - "minecraft:yellow_concrete" - ] -} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/pool_tiles.json b/src/main/resources/data/ariasessentials/tags/items/pool_tiles.json new file mode 100644 index 0000000..c63da67 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/pool_tiles.json @@ -0,0 +1,57 @@ +{ + "values": [ + + "ariasessentials:pool_tile", + "ariasessentials:pool_tile_stairs", + "ariasessentials:pool_tile_slab", + "ariasessentials:pool_tile_wall", + "ariasessentials:pool_tile_light", + "ariasessentials:dirty_pool_tile", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:dirty_pool_tile_light", + "ariasessentials:filthy_pool_tile_light", + + "ariasessentials:dark_pool_tile", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:dark_pool_tile_light", + + "ariasessentials:green_pool_tile", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:green_pool_tile_light", + "ariasessentials:dirty_green_pool_tile", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_light", + "ariasessentials:filthy_green_pool_tile_light", + + "ariasessentials:blue_pool_tile", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:blue_pool_tile_light", + "ariasessentials:dirty_blue_pool_tile", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_light", + "ariasessentials:filthy_blue_pool_tile_light", + + "ariasessentials:red_pool_tile", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:red_pool_tile_light", + "ariasessentials:dirty_red_pool_tile", + "ariasessentials:dirty_red_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_light", + "ariasessentials:filthy_red_pool_tile_light" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables.json b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables.json new file mode 100644 index 0000000..b0f2ed2 --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#ariasessentials:uncrafting_tables/uncrafter" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables/uncrafter.json b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables/uncrafter.json new file mode 100644 index 0000000..cf5be9c --- /dev/null +++ b/src/main/resources/data/ariasessentials/tags/items/uncrafting_tables/uncrafter.json @@ -0,0 +1,6 @@ +{ + "values": [ + "twilightforest:uncrafting_table", + "minecraft:crafting_table" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json b/src/main/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json new file mode 100644 index 0000000..a790d6b --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/configured_feature/eternium_oregen_overworld.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "size": 8, + "discard_chance_on_air_exposure": 0, + "targets": [ + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + }, + "state": { + "Name": "ariasessentials:eternium_ore_block" + } + }, + { + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + }, + "state": { + "Name": "ariasessentials:deepslate_eternium_ore_block" + } + } + ] + } +} diff --git a/src/main/resources/data/ariasessentials/worldgen/noise_settings/builder.json b/src/main/resources/data/ariasessentials/worldgen/noise_settings/builder.json new file mode 100644 index 0000000..e308461 --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/noise_settings/builder.json @@ -0,0 +1,2448 @@ +{ + "sea_level": -64, + "disable_mob_generation": true, + "aquifers_enabled": false, + "ore_veins_enabled": false, + "legacy_random_source": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "noise": { + "min_y": -64, + "height": 384, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1, + "y_scale": 0.5 + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1, + "y_scale": 1 + }, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "continents": "minecraft:overworld/continents", + "erosion": "minecraft:overworld/erosion", + "depth": "minecraft:overworld/depth", + "ridges": "minecraft:overworld/ridges", + "initial_density_without_jaggedness": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "min": -64, + "max": 64 + } + } + } + } + } + } + }, + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.25, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -50, + "from_value": 0, + "to_value": 0.05 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -2, + "argument2": { + "type": "minecraft:add", + "argument1": -4, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/sloped_cheese", + "min_inclusive": -1000000, + "max_exclusive": 1.5625, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1, + "y_scale": 8 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1, + "y_scale": 0.6666666666666666 + } + }, + "min": -1, + "max": 1 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld/sloped_cheese" + } + }, + "min": 0, + "max": 0.5 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "min_inclusive": -1000000, + "max_exclusive": 0.03, + "when_in_range": -1000000, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "vein_toggle": 0, + "vein_ridged": 0, + "vein_gap": 0 + }, + "spawn_target": [ + { + "temperature": 0, + "humidity": 0, + "continentalness": 0, + "erosion": 0, + "weirdness": 0, + "depth": 0, + "offset": 0 + }, + { + "temperature": 0, + "humidity": 0, + "continentalness": 0, + "erosion": 0, + "weirdness": 0, + "depth": 0, + "offset": 0 + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + }, + "false_at_and_above": { + "above_bottom": 5 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": 0, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": 0, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.06060606060606061, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.11515151515151514, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": -0.5, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": -0.0625, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 6 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 30 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + }, + "false_at_and_above": { + "absolute": 8 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} diff --git a/src/main/resources/data/ariasessentials/worldgen/noise_settings/resource.json b/src/main/resources/data/ariasessentials/worldgen/noise_settings/resource.json new file mode 100644 index 0000000..514a460 --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/noise_settings/resource.json @@ -0,0 +1,2542 @@ +{ + "sea_level": 63, + "disable_mob_generation": true, + "aquifers_enabled": true, + "ore_veins_enabled": true, + "legacy_random_source": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "noise": { + "min_y": -64, + "height": 384, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1, + "y_scale": 0.5 + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1, + "y_scale": 1 + }, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "xz_scale": 0.25, + "y_scale": 0, + "shift_x": "minecraft:shift_x", + "shift_y": 0, + "shift_z": "minecraft:shift_z" + }, + "continents": "minecraft:overworld/continents", + "erosion": "minecraft:overworld/erosion", + "depth": "minecraft:overworld/depth", + "ridges": "minecraft:overworld/ridges", + "initial_density_without_jaggedness": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "min": -64, + "max": 64 + } + } + } + } + } + } + }, + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": -64, + "to_y": -40, + "from_value": 0, + "to_value": 1 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_y": 240, + "to_y": 256, + "from_value": 1, + "to_value": 0 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/sloped_cheese", + "min_inclusive": -1000000, + "max_exclusive": 1.5625, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1, + "y_scale": 8 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1, + "y_scale": 0.6666666666666666 + } + }, + "min": -1, + "max": 1 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld/sloped_cheese" + } + }, + "min": 0, + "max": 0.5 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "min_inclusive": -1000000, + "max_exclusive": 0.03, + "when_in_range": -1000000, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0 + } + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4, + "y_scale": 4 + }, + "when_out_of_range": 0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "min_inclusive": -60, + "max_exclusive": 51, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4, + "y_scale": 4 + }, + "when_out_of_range": 0 + } + } + } + } + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1, + "y_scale": 1 + } + }, + "spawn_target": [ + { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + -1, + -0.16 + ], + "depth": 0, + "offset": 0 + }, + { + "temperature": [ + -1, + 1 + ], + "humidity": [ + -1, + 1 + ], + "continentalness": [ + -0.11, + 1 + ], + "erosion": [ + -1, + 1 + ], + "weirdness": [ + 0.16, + 1 + ], + "depth": 0, + "offset": 0 + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + }, + "false_at_and_above": { + "above_bottom": 5 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface_swamp", + "min_threshold": 0, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.909, + "max_threshold": -0.5454 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.1818, + "max_threshold": 0.1818 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.5454, + "max_threshold": 0.909 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1, + "add_stone_depth": true + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -1, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": 0, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": 0, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.35, + "max_threshold": 0.6 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.06060606060606061, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.11515151515151514, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": -6, + "surface_depth_multiplier": -1, + "add_stone_depth": true + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:packed_ice", + "min_threshold": -0.5, + "max_threshold": 0.2 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:ice", + "min_threshold": -0.0625, + "max_threshold": 0.025 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:powder_snow", + "min_threshold": 0.45, + "max_threshold": 0.58 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "offset": 0, + "surface_depth_multiplier": 0, + "add_stone_depth": false + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:calcite", + "min_threshold": -0.0125, + "max_threshold": 0.0125 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:gravel", + "min_threshold": -0.05, + "max_threshold": 0.05 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.21212121212121213, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.24242424242424243, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": 0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "noise": "minecraft:surface", + "min_threshold": -0.12121212121212122, + "max_threshold": 1.7976931348623157e+308 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 6 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": true, + "secondary_depth_range": 30 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "floor", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "offset": 0, + "surface_type": "ceiling", + "add_surface_depth": false, + "secondary_depth_range": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + }, + "false_at_and_above": { + "absolute": 8 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} diff --git a/src/main/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json b/src/main/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json new file mode 100644 index 0000000..094ccfc --- /dev/null +++ b/src/main/resources/data/ariasessentials/worldgen/placed_feature/eternium_oregen_overworld.json @@ -0,0 +1,27 @@ +{ + "feature": "ariasessentials:eternium_oregen_overworld", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "min_inclusive": { + "absolute": -20 + }, + "max_inclusive": { + "absolute": 25 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} diff --git a/src/main/resources/data/forge/tags/blocks/ore_rates/singular.json b/src/main/resources/data/forge/tags/blocks/ore_rates/singular.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ore_rates/singular.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/ores.json b/src/main/resources/data/forge/tags/blocks/ores.json new file mode 100644 index 0000000..31b4208 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#forge:ores/cobalt", + "#forge:ores/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/ores/eternium.json b/src/main/resources/data/forge/tags/blocks/ores/eternium.json new file mode 100644 index 0000000..13baeba --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ores/eternium.json @@ -0,0 +1,6 @@ +{ + "values": [ + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json b/src/main/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/ores_in_ground/netherrack.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/storage_blocks.json b/src/main/resources/data/forge/tags/blocks/storage_blocks.json new file mode 100644 index 0000000..298093d --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/storage_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:storage_blocks/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/blocks/storage_blocks/eternium.json b/src/main/resources/data/forge/tags/blocks/storage_blocks/eternium.json new file mode 100644 index 0000000..b351961 --- /dev/null +++ b/src/main/resources/data/forge/tags/blocks/storage_blocks/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "otemod:eternium_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/brimstone.json b/src/main/resources/data/forge/tags/items/brimstone.json new file mode 100644 index 0000000..b85d8d6 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/brimstone.json @@ -0,0 +1,5 @@ +{ + "values": [ + "biomesoplenty:brimstone" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/dusts.json b/src/main/resources/data/forge/tags/items/dusts.json new file mode 100644 index 0000000..b35632b --- /dev/null +++ b/src/main/resources/data/forge/tags/items/dusts.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:dusts/magma" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/dusts/magma.json b/src/main/resources/data/forge/tags/items/dusts/magma.json new file mode 100644 index 0000000..6dda7ad --- /dev/null +++ b/src/main/resources/data/forge/tags/items/dusts/magma.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:magma_powder" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ingots.json b/src/main/resources/data/forge/tags/items/ingots.json new file mode 100644 index 0000000..139e30f --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ingots.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:ingots/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ingots/eternium.json b/src/main/resources/data/forge/tags/items/ingots/eternium.json new file mode 100644 index 0000000..47823d5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ingots/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_ingot" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/nuggets.json b/src/main/resources/data/forge/tags/items/nuggets.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/nuggets.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ore_rates/singular.json b/src/main/resources/data/forge/tags/items/ore_rates/singular.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ore_rates/singular.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ores.json b/src/main/resources/data/forge/tags/items/ores.json new file mode 100644 index 0000000..12bf5a3 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ores.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:ores/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ores/eternium.json b/src/main/resources/data/forge/tags/items/ores/eternium.json new file mode 100644 index 0000000..6c4451e --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ores/eternium.json @@ -0,0 +1,7 @@ +{ + "values": [ + "ariasessentials:eternium_ore", + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/ores_in_ground/netherrack.json b/src/main/resources/data/forge/tags/items/ores_in_ground/netherrack.json new file mode 100644 index 0000000..f345cb5 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/ores_in_ground/netherrack.json @@ -0,0 +1,4 @@ +{ + "values": [ + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/raw_materials.json b/src/main/resources/data/forge/tags/items/raw_materials.json new file mode 100644 index 0000000..ac202c0 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/raw_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:raw_materials/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/raw_materials/eternium.json b/src/main/resources/data/forge/tags/items/raw_materials/eternium.json new file mode 100644 index 0000000..15710e6 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/raw_materials/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_ore" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/rods.json b/src/main/resources/data/forge/tags/items/rods.json new file mode 100644 index 0000000..7a65d15 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/rods.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:rods/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/rods/eternium.json b/src/main/resources/data/forge/tags/items/rods/eternium.json new file mode 100644 index 0000000..03dc005 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/rods/eternium.json @@ -0,0 +1,5 @@ +{ + "values": [ + "ariasessentials:eternium_rod" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/storage_blocks.json b/src/main/resources/data/forge/tags/items/storage_blocks.json new file mode 100644 index 0000000..298093d --- /dev/null +++ b/src/main/resources/data/forge/tags/items/storage_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#forge:storage_blocks/eternium" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/forge/tags/items/storage_blocks/eternium.json b/src/main/resources/data/forge/tags/items/storage_blocks/eternium.json new file mode 100644 index 0000000..16ae335 --- /dev/null +++ b/src/main/resources/data/forge/tags/items/storage_blocks/eternium.json @@ -0,0 +1,5 @@ +{ + "values":[ + "ariasessentials:eternium_block" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json b/src/main/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json new file mode 100644 index 0000000..51de7df --- /dev/null +++ b/src/main/resources/data/minecraft/loot_tables/blocks/budding_amethyst.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "rolls": 1.0, + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "enchantments": [ + { + "enchantment": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + ], + "name": "minecraft:budding_amethyst" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:amethyst_block" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json index c5282cf..1729d95 100644 --- a/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json +++ b/src/main/resources/data/minecraft/tags/blocks/mineable/pickaxe.json @@ -2,6 +2,13 @@ "replace": false, "values": [ + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block", + "ariasessentials:eternium_block", + + + "#ariasessentials:pool_tiles", + "#ariasessentials:engineersdecor" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json b/src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json new file mode 100644 index 0000000..e14f1ee --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/needs_diamond_tool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json b/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json index c5282cf..2a9ad8a 100644 --- a/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json +++ b/src/main/resources/data/minecraft/tags/blocks/needs_iron_tool.json @@ -2,6 +2,11 @@ "replace": false, "values": [ - "#ariasessentials:engineersdecor" + "ariasessentials:eternium_ore_block", + "ariasessentials:deepslate_eternium_ore_block", + "ariasessentials:eternium_block", + + "#ariasessentials:engineersdecor", + "#ariasessentials:pool_tiles" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/slabs.json b/src/main/resources/data/minecraft/tags/blocks/slabs.json index 826bfe5..818d8dd 100644 --- a/src/main/resources/data/minecraft/tags/blocks/slabs.json +++ b/src/main/resources/data/minecraft/tags/blocks/slabs.json @@ -6,6 +6,17 @@ "ariasessentials:clinker_brick_stained_slab", "ariasessentials:slag_brick_slab", "ariasessentials:rebar_concrete_slab", - "ariasessentials:panzerglass_slab" + "ariasessentials:panzerglass_slab", + + "ariasessentials:pool_tile_slab", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_slab" + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/stairs.json b/src/main/resources/data/minecraft/tags/blocks/stairs.json index e3608de..ce94f5c 100644 --- a/src/main/resources/data/minecraft/tags/blocks/stairs.json +++ b/src/main/resources/data/minecraft/tags/blocks/stairs.json @@ -5,6 +5,17 @@ "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_stained_stairs", "ariasessentials:slag_brick_stairs", - "ariasessentials:rebar_concrete_stairs" + "ariasessentials:rebar_concrete_stairs", + + "ariasessentials:pool_tile_stairs", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_stairs" + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/walls.json b/src/main/resources/data/minecraft/tags/blocks/walls.json index 0b1bd59..e38afa6 100644 --- a/src/main/resources/data/minecraft/tags/blocks/walls.json +++ b/src/main/resources/data/minecraft/tags/blocks/walls.json @@ -3,6 +3,14 @@ "values": [ "ariasessentials:clinker_brick_wall", "ariasessentials:slag_brick_wall", - "ariasessentials:rebar_concrete_wall" + "ariasessentials:rebar_concrete_wall", + "ariasessentials:pool_tile_wall", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_wall" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wither_immune.json b/src/main/resources/data/minecraft/tags/blocks/wither_immune.json index b2f4098..947d282 100644 --- a/src/main/resources/data/minecraft/tags/blocks/wither_immune.json +++ b/src/main/resources/data/minecraft/tags/blocks/wither_immune.json @@ -10,6 +10,12 @@ "ariasessentials:rebar_concrete_wall", "ariasessentials:rebar_concrete_tile", "ariasessentials:rebar_concrete_tile_slab", - "ariasessentials:rebar_concrete_tile_stairs" + "ariasessentials:rebar_concrete_tile_stairs", + "ariasessentials:eternium_block", + + "#ariasessentials:pool_tiles", + "minecraft:spawner" + + ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wool.json b/src/main/resources/data/minecraft/tags/blocks/wool.json new file mode 100644 index 0000000..ba320ef --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/wool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_wool" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/blocks/wool_carpet.json b/src/main/resources/data/minecraft/tags/blocks/wool_carpet.json new file mode 100644 index 0000000..ff7d208 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/blocks/wool_carpet.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_carpet" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/dyes.json b/src/main/resources/data/minecraft/tags/items/dyes.json new file mode 100644 index 0000000..310183f --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/dyes.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_dye" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/piglin_loved.json b/src/main/resources/data/minecraft/tags/items/piglin_loved.json new file mode 100644 index 0000000..61c944d --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/piglin_loved.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "#ariasessentials:deprecated" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/slabs.json b/src/main/resources/data/minecraft/tags/items/slabs.json index 826bfe5..65c4e63 100644 --- a/src/main/resources/data/minecraft/tags/items/slabs.json +++ b/src/main/resources/data/minecraft/tags/items/slabs.json @@ -6,6 +6,16 @@ "ariasessentials:clinker_brick_stained_slab", "ariasessentials:slag_brick_slab", "ariasessentials:rebar_concrete_slab", - "ariasessentials:panzerglass_slab" + "ariasessentials:panzerglass_slab", + + "ariasessentials:pool_tile_slab", + "ariasessentials:blue_pool_tile_slab", + "ariasessentials:dark_pool_tile_slab", + "ariasessentials:green_pool_tile_slab", + "ariasessentials:red_pool_tile_slab", + "ariasessentials:dirty_pool_tile_slab", + "ariasessentials:dirty_blue_pool_tile_slab", + "ariasessentials:dirty_green_pool_tile_slab", + "ariasessentials:dirty_red_pool_tile_slab" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/stairs.json b/src/main/resources/data/minecraft/tags/items/stairs.json index e3608de..fba777a 100644 --- a/src/main/resources/data/minecraft/tags/items/stairs.json +++ b/src/main/resources/data/minecraft/tags/items/stairs.json @@ -5,6 +5,16 @@ "ariasessentials:clinker_brick_stairs", "ariasessentials:clinker_brick_stained_stairs", "ariasessentials:slag_brick_stairs", - "ariasessentials:rebar_concrete_stairs" + "ariasessentials:rebar_concrete_stairs", + + "ariasessentials:pool_tile_stairs", + "ariasessentials:dark_pool_tile_stairs", + "ariasessentials:blue_pool_tile_stairs", + "ariasessentials:green_pool_tile_stairs", + "ariasessentials:red_pool_tile_stairs", + "ariasessentials:dirty_pool_tile_stairs", + "ariasessentials:dirty_blue_pool_tile_stairs", + "ariasessentials:dirty_green_pool_tile_stairs", + "ariasessentials:dirty_red_pool_tile_stairs" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/walls.json b/src/main/resources/data/minecraft/tags/items/walls.json index 0b1bd59..e38afa6 100644 --- a/src/main/resources/data/minecraft/tags/items/walls.json +++ b/src/main/resources/data/minecraft/tags/items/walls.json @@ -3,6 +3,14 @@ "values": [ "ariasessentials:clinker_brick_wall", "ariasessentials:slag_brick_wall", - "ariasessentials:rebar_concrete_wall" + "ariasessentials:rebar_concrete_wall", + "ariasessentials:pool_tile_wall", + "ariasessentials:dirty_pool_tile_wall", + "ariasessentials:blue_pool_tile_wall", + "ariasessentials:dirty_blue_pool_tile_wall", + "ariasessentials:red_pool_tile_wall", + "ariasessentials:dirty_red_pool_tile_wall", + "ariasessentials:green_pool_tile_wall", + "ariasessentials:dirty_green_pool_tile_wall" ] } \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wool.json b/src/main/resources/data/minecraft/tags/items/wool.json new file mode 100644 index 0000000..ba320ef --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/wool.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_wool" + ] +} \ No newline at end of file diff --git a/src/main/resources/data/minecraft/tags/items/wool_carpet.json b/src/main/resources/data/minecraft/tags/items/wool_carpet.json new file mode 100644 index 0000000..ff7d208 --- /dev/null +++ b/src/main/resources/data/minecraft/tags/items/wool_carpet.json @@ -0,0 +1,6 @@ +{ + "replace": false, + "values": [ + "ariasessentials:dark_red_carpet" + ] +} \ No newline at end of file diff --git a/src/main/resources/pack.mcmeta b/src/main/resources/pack.mcmeta index 81a429d..f647c87 100644 --- a/src/main/resources/pack.mcmeta +++ b/src/main/resources/pack.mcmeta @@ -1,8 +1,7 @@ { - "pack": { - "description": "${mod_id} resources", - "pack_format": 9, - "forge:resource_pack_format": 9, - "forge:data_pack_format": 10 - } + "pack": { + "description": "Aria's Essentials", + "forge:data_pack_format": 10, + "pack_format": 9 + } }

+ * Source Material + */ +public abstract class BlockImitation extends Block +{ + public BlockImitation(Properties pProperties) { + super(pProperties); + } + + + public abstract BlockState getImitatedBlockState(BlockGetter level, BlockPos pos); + + public abstract void updateImitation(BlockState newState, BlockGetter level, BlockPos pos); + + @Override + public void animateTick(BlockState blockState, Level level, BlockPos pos, RandomSource random) { + BlockState imitatedBlockState = getImitatedBlockState(level, pos); + imitatedBlockState.getBlock().animateTick(imitatedBlockState, level, pos, random); + } + + @Override + public void stepOn(Level level, BlockPos pos, BlockState blockState, Entity entity) { + BlockState imitatedBlockState = getImitatedBlockState(level, pos); + imitatedBlockState.getBlock().stepOn(level, pos, imitatedBlockState, entity); + } + + @Override + public void fallOn(Level level, BlockState blockState, BlockPos pos, Entity entity, float speed) { + BlockState imitatedBlockState = getImitatedBlockState(level, pos); + imitatedBlockState.getBlock().fallOn(level, imitatedBlockState, pos, entity, speed); + } + + @Override + public ItemStack getCloneItemStack(BlockGetter level, BlockPos pos, BlockState blockState) { + BlockState imitatedBlockState = getImitatedBlockState(level, pos); + return imitatedBlockState.getBlock().getCloneItemStack(level, pos, imitatedBlockState); + } + + @Override + public void handlePrecipitation(BlockState blockState, Level level, BlockPos pos, Biome.Precipitation precipitation) { + BlockState imitatedBlockState = getImitatedBlockState(level, pos); + imitatedBlockState.getBlock().handlePrecipitation(imitatedBlockState, level, pos, precipitation); + } + + @Override + public int getLightBlock(BlockState blockState, BlockGetter level, BlockPos pos) { + return super.getLightBlock(blockState, level, pos); + } + + @Override + public float getShadeBrightness(BlockState blockState, BlockGetter level, BlockPos pos) { + return super.getShadeBrightness(blockState, level, pos); + } + + @Override + public int getAnalogOutputSignal(BlockState blockState, Level level, BlockPos pos) { + return getImitatedBlockState(level, pos).getAnalogOutputSignal(level, pos); + } + + @Override + public void randomTick(BlockState blockState, ServerLevel level, BlockPos pos, RandomSource random) { + getImitatedBlockState(level, pos).randomTick(level, pos, random); + } + + @Override + public void tick(BlockState blockState, ServerLevel level, BlockPos pos, RandomSource random) { + getImitatedBlockState(level, pos).tick(level, pos, random); + } + + @Override + public int getSignal(BlockState blockState, BlockGetter level, BlockPos pos, Direction direction) { + return getImitatedBlockState(level, pos).getSignal(level, pos, direction); + } + + @Override + public int getDirectSignal(BlockState blockState, BlockGetter level, BlockPos pos, Direction direction) { + return getImitatedBlockState(level, pos).getDirectSignal(level, pos, direction); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java b/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java new file mode 100644 index 0000000..3d038e2 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentBlock.java @@ -0,0 +1,18 @@ +package com.zontreck.libzontreck.blocks; + +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.AbstractGlassBlock; +import net.minecraft.world.level.block.state.BlockState; + +public class PartialTransparentBlock extends AbstractGlassBlock +{ + public PartialTransparentBlock(Properties p_48729_) { + super(p_48729_); + } + + @Override + public boolean propagatesSkylightDown(BlockState p_48740_, BlockGetter p_48741_, BlockPos p_48742_) { + return true; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java b/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java new file mode 100644 index 0000000..24cdcda --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/blocks/PartialTransparentSlabBlock.java @@ -0,0 +1,19 @@ +package com.zontreck.libzontreck.blocks; + +import net.minecraft.core.BlockPos; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.AbstractGlassBlock; +import net.minecraft.world.level.block.SlabBlock; +import net.minecraft.world.level.block.state.BlockState; + +public class PartialTransparentSlabBlock extends SlabBlock +{ + public PartialTransparentSlabBlock(Properties p_48729_) { + super(p_48729_); + } + + @Override + public boolean propagatesSkylightDown(BlockState p_48740_, BlockGetter p_48741_, BlockPos p_48742_) { + return true; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java b/src/main/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java new file mode 100644 index 0000000..b997a6b --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/blocks/RedstoneBlock.java @@ -0,0 +1,100 @@ +package com.zontreck.libzontreck.blocks; + +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.world.item.context.BlockPlaceContext; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.Level; +import net.minecraft.world.level.LevelReader; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.StateDefinition; +import net.minecraft.world.level.block.state.properties.BlockStateProperties; +import net.minecraft.world.level.block.state.properties.BooleanProperty; +import org.jetbrains.annotations.Nullable; + +import java.util.List; + +public abstract class RedstoneBlock extends RotatableBlock +{ + public static final BooleanProperty INPUT_POWER = BooleanProperty.create("inputpower"); + public static final BooleanProperty POWERED = BlockStateProperties.POWERED; + private List sides; + + protected RedstoneBlock(Properties pProperties, Direction... validSides) { + super(pProperties); + sides=List.of(validSides); + } + + @Override + public BlockState getStateForPlacement(BlockPlaceContext pContext) { + return super.getStateForPlacement(pContext).setValue(INPUT_POWER, false).setValue(POWERED, false); + } + + @Override + protected void createBlockStateDefinition(StateDefinition.Builder pBuilder) { + super.createBlockStateDefinition(pBuilder); + pBuilder.add(INPUT_POWER, POWERED); + } + + @Override + public boolean canConnectRedstone(BlockState state, BlockGetter level, BlockPos pos, @Nullable Direction direction) { + if(sides.contains(direction)) return true; + else return false; + } + + private boolean redstoneIsActivated(LevelReader level, BlockPos pos) + { + ServerLevel srv = (ServerLevel)level; + if(srv.hasNeighborSignal(pos)) + return true; + else return false; + } + + @Override + public int getSignal(BlockState p_60483_, BlockGetter p_60484_, BlockPos p_60485_, Direction p_60486_) { + if(!sides.contains(p_60486_)) return 0; + + if(p_60483_.getValue(POWERED)) + return 15; + else return 0; + } + + protected abstract void onRedstone(LevelReader level, BlockPos pos, boolean on); + protected abstract void onRedstoneInputChanged(LevelReader level, BlockPos pos, boolean on); + + @Override + public void onNeighborChange(BlockState state, LevelReader level, BlockPos pos, BlockPos neighbor) { + boolean rs = redstoneIsActivated(level, pos); + onRedstone(level, pos, rs); + boolean inp = state.getValue(INPUT_POWER); + state.setValue(INPUT_POWER, rs); + + if(inp != rs) + onRedstoneInputChanged(level, pos, rs); + } + + + @Override + public void neighborChanged(BlockState state, Level level, BlockPos pos, Block block, BlockPos other, boolean unknown) { + boolean rs = redstoneIsActivated(level, pos); + onRedstone(level, pos, rs); + boolean inp = state.getValue(INPUT_POWER); + state.setValue(INPUT_POWER, rs); + + if(inp != rs) + onRedstoneInputChanged(level, pos, rs); + } + + @Override + public void onPlace(BlockState state, Level level, BlockPos pos, BlockState p_60569_, boolean p_60570_) { + boolean rs = redstoneIsActivated(level, pos); + onRedstone(level, pos, rs); + boolean inp = state.getValue(INPUT_POWER); + state.setValue(INPUT_POWER, rs); + + if(inp != rs) + onRedstoneInputChanged(level, pos, rs); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlock.java b/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlock.java new file mode 100644 index 0000000..e927ba0 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlock.java @@ -0,0 +1,39 @@ +package com.zontreck.libzontreck.blocks; + +import net.minecraft.world.item.context.BlockPlaceContext; +import net.minecraft.world.level.block.Block; +import net.minecraft.world.level.block.HorizontalDirectionalBlock; +import net.minecraft.world.level.block.Mirror; +import net.minecraft.world.level.block.Rotation; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.level.block.state.StateDefinition; + +public class RotatableBlock extends HorizontalDirectionalBlock +{ + public RotatableBlock(Properties pProperties) { + super(pProperties); + } + + @Override + protected void createBlockStateDefinition(StateDefinition.Builder pBuilder) { + super.createBlockStateDefinition(pBuilder); + pBuilder.add(FACING); + } + + + @Override + public BlockState rotate(BlockState p_55115_, Rotation p_55116_) { + return p_55115_.setValue(FACING, p_55116_.rotate(p_55115_.getValue(FACING))); + } + + @Override + public BlockState mirror(BlockState p_55112_, Mirror p_55113_) { + return p_55112_.rotate(p_55113_.getRotation(p_55112_.getValue(FACING))); + } + + + @Override + public BlockState getStateForPlacement(BlockPlaceContext pContext) { + return defaultBlockState().setValue(FACING, pContext.getHorizontalDirection()); + } +} \ No newline at end of file diff --git a/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java b/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java new file mode 100644 index 0000000..8cb5497 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/blocks/RotatableBlockCustomVoxels.java @@ -0,0 +1,34 @@ +package com.zontreck.libzontreck.blocks; + +import com.zontreck.ariaslib.util.Maps; +import net.minecraft.core.BlockPos; +import net.minecraft.core.Direction; +import net.minecraft.world.level.BlockGetter; +import net.minecraft.world.level.block.state.BlockState; +import net.minecraft.world.phys.shapes.CollisionContext; +import net.minecraft.world.phys.shapes.VoxelShape; + +import java.util.HashMap; +import java.util.Map; + + +public class RotatableBlockCustomVoxels extends RotatableBlock +{ + private Map rotatedShapes = new HashMap<>(); + + public RotatableBlockCustomVoxels(Properties properties, VoxelShape north, VoxelShape south, VoxelShape east, VoxelShape west) { + super(properties); + rotatedShapes = Maps.of(new Maps.Entry<>(Direction.NORTH, north), new Maps.Entry<>(Direction.SOUTH, south), new Maps.Entry<>(Direction.WEST, west), new Maps.Entry<>(Direction.EAST, east), new Maps.Entry<>(Direction.NORTH, north), new Maps.Entry<>(Direction.DOWN, north)); + } + + @Override + public VoxelShape getShape(BlockState state, BlockGetter world, BlockPos pos, CollisionContext context) { + Direction facing = state.getValue(FACING); + return rotatedShapes.get(facing); + } + + @Override + public boolean propagatesSkylightDown(BlockState p_49928_, BlockGetter p_49929_, BlockPos p_49930_) { + return true; + } +} diff --git a/src/main/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java b/src/main/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java new file mode 100644 index 0000000..49b605b --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/bossbars/BossBarUtils.java @@ -0,0 +1,25 @@ +package com.zontreck.libzontreck.bossbars; + +import net.minecraft.client.Minecraft; +import net.minecraft.server.bossevents.CustomBossEvents; +import net.minecraft.server.commands.BossBarCommands; +import net.minecraft.server.level.ServerLevel; +import net.minecraft.server.level.ServerPlayer; +import net.minecraft.world.entity.player.Player; + +public class BossBarUtils { + public class BossBarStructure + { + public String Header; + public int Percent; + } + public static void sendBossBarToPlayer(Player p, BossBarStructure struc) + { + if(Minecraft.getInstance().level.isClientSide())return; + + ServerPlayer sp = (ServerPlayer)p; + if(sp==null)return; + + //sp.server.getCustomBossEvents().create(null, null) + } +} diff --git a/src/main/java/com/zontreck/libzontreck/chat/ChatColor.java b/src/main/java/com/zontreck/libzontreck/chat/ChatColor.java new file mode 100644 index 0000000..da8a746 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chat/ChatColor.java @@ -0,0 +1,179 @@ +package com.zontreck.libzontreck.chat; + +public class ChatColor { + public enum ColorOptions{ + Black, + Dark_Blue, + Dark_Green, + Dark_Aqua, + Dark_Red, + Dark_Purple, + Gold, + Gray, + Dark_Gray, + Blue, + Green, + Aqua, + Red, + Light_Purple, + Yellow, + White, + MinecoinGold, + Underline, + Bold, + Italic, + Strikethrough, + Crazy, + Reset + } + public static char CODE = '§'; + public static String BLACK = build("0"); + public static String DARK_BLUE = build("1"); + public static String DARK_GREEN = build("2"); + public static String DARK_AQUA = build("3"); + public static String DARK_RED = build("4"); + public static String DARK_PURPLE = build("5"); + public static String GOLD = build("6"); + public static String GRAY = build("7"); + public static String DARK_GRAY = build("8"); + public static String BLUE = build("9"); + public static String GREEN = build("a"); + public static String AQUA = build("b"); + public static String RED = build("c"); + public static String LIGHT_PURPLE = build("d"); + public static String YELLOW = build("e"); + public static String WHITE = build("f"); + public static String MINECOIN_GOLD = build("g"); + + public static String UNDERLINE = build("u"); + public static String BOLD = build("l"); + public static String ITALIC = build("o"); + public static String STRIKETHROUGH = build("m"); + public static String CRAZY = build("k"); + public static String RESET = build("r"); + + public static String doColors(String msg) + { + for(ChatColor.ColorOptions color : ChatColor.ColorOptions.values()){ + msg = msg.replace("!"+color.toString()+"!", ChatColor.from(color)); + msg = msg.replace("!"+color.toString().toLowerCase()+"!", ChatColor.from(color)); + } + for(ChatColor.ColorOptions color : ChatColor.ColorOptions.values()){ + String correctCode = ChatColor.from(color); + String searchCode = "&"+correctCode.substring(1); + msg = msg.replace(searchCode, correctCode); + } + return msg; + } + + public static String build(String c) + { + return CODE+c; + } + + public static String resetChat() + { + return RESET+WHITE; + } + + public static String from(ColorOptions nick){ + switch(nick){ + case Black: + { + return BLACK; + } + case Dark_Blue: + { + return DARK_BLUE; + } + case Dark_Green: + { + return DARK_GREEN; + } + case Dark_Aqua: + { + return DARK_AQUA; + } + case Dark_Red: + { + return DARK_RED; + } + case Dark_Purple: + { + return DARK_PURPLE; + } + case Gold: + { + return GOLD; + } + case Gray: + { + return GRAY; + } + case Dark_Gray: + { + return DARK_GRAY; + } + case Blue: + { + return BLUE; + } + case Green: + { + return GREEN; + } + case Aqua: + { + return AQUA; + } + case Red: + { + return RED; + } + case Light_Purple: + { + return LIGHT_PURPLE; + } + case Yellow: + { + return YELLOW; + } + case White: + { + return WHITE; + } + case MinecoinGold: + { + return MINECOIN_GOLD; + } + case Underline: + { + return UNDERLINE; + } + case Bold: + { + return BOLD; + } + case Italic: + { + return ITALIC; + } + case Strikethrough: + { + return STRIKETHROUGH; + } + case Crazy: + { + return CRAZY; + } + case Reset: + { + return RESET+WHITE; + } + default: + { + return RESET+CRAZY; + } + } + } +} diff --git a/src/main/java/com/zontreck/libzontreck/chat/ChatColorFactory.java b/src/main/java/com/zontreck/libzontreck/chat/ChatColorFactory.java new file mode 100644 index 0000000..540421e --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chat/ChatColorFactory.java @@ -0,0 +1,53 @@ +package com.zontreck.libzontreck.chat; + +public class ChatColorFactory { + public class ColorBuilder + { + private String built; + public void append(String s){ + built+=s; + } + public String build(){ + return built; + } + + /** + * Resets the color builder + */ + public void reset() + { + built=""; + append(ChatColor.resetChat()); + } + public ColorBuilder(){} + } + private ColorBuilder instance; + + /** + * Resets the chat color builder + * @return The current builder + */ + public ChatColorFactory reset() + { + instance.reset(); + return this; + } + public ChatColorFactory set(ChatColor.ColorOptions option) + { + instance.append(ChatColor.from(option)); + return this; + } + + public static ChatColorFactory MakeBuilder() + { + ChatColorFactory inst=new ChatColorFactory(); + inst.instance=new ChatColorFactory().new ColorBuilder(); + return inst; + } + private ChatColorFactory(){} + + @Override + public String toString(){ + return instance.build(); + } +} diff --git a/src/main/java/com/zontreck/libzontreck/chat/Clickable.java b/src/main/java/com/zontreck/libzontreck/chat/Clickable.java new file mode 100644 index 0000000..09d4910 --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chat/Clickable.java @@ -0,0 +1,16 @@ +package com.zontreck.libzontreck.chat; + +import net.minecraft.network.chat.ClickEvent; +import net.minecraft.network.chat.ClickEvent.Action; + +/* + * Because of some weird behavior with java not liking that both HoverEvent and ClickEvent have an Action implementation, these must both be in a custom factory here where Action can be imported by itself in both files + */ +public class Clickable { + + public static ClickEvent command(String text) + { + return new ClickEvent(Action.RUN_COMMAND, text); + } + +} diff --git a/src/main/java/com/zontreck/libzontreck/chat/HoverTip.java b/src/main/java/com/zontreck/libzontreck/chat/HoverTip.java new file mode 100644 index 0000000..30702af --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chat/HoverTip.java @@ -0,0 +1,33 @@ +package com.zontreck.libzontreck.chat; + +import com.zontreck.libzontreck.util.ChatHelpers; +import net.minecraft.network.chat.HoverEvent; +import net.minecraft.network.chat.HoverEvent.Action; +import net.minecraft.world.item.ItemStack; + +/* + * Because of some weird behavior with java not liking that both HoverEvent and ClickEvent have an Action implementation, these must both be in a custom factory here where Action can be imported by itself in both files + */ +public class HoverTip { + + /** + * This will return a hover event that shows a string of text when hovered over + * @param text + * @return + */ + public static HoverEvent get(String text) + { + return new HoverEvent(Action.SHOW_TEXT, ChatHelpers.macro(text)); + } + + /** + * Returns a hover event that shows an item when hovered over + * @param is + * @return + */ + public static HoverEvent getItem(ItemStack is) + { + return new HoverEvent(Action.SHOW_ITEM, new HoverEvent.ItemStackInfo(is)); + } + +} diff --git a/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUI.java b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUI.java new file mode 100644 index 0000000..857d35d --- /dev/null +++ b/src/main/java/com/zontreck/libzontreck/chestgui/ChestGUI.java @@ -0,0 +1,271 @@ +package com.zontreck.libzontreck.chestgui; + +import com.zontreck.libzontreck.LibZontreck; +import com.zontreck.libzontreck.events.CloseGUIEvent; +import com.zontreck.libzontreck.events.OpenGUIEvent; +import com.zontreck.libzontreck.items.ModItems; +import com.zontreck.libzontreck.menus.ChestGUIMenu; +import com.zontreck.libzontreck.networking.ModMessages; +import com.zontreck.libzontreck.networking.packets.S2CCloseChestGUI; +import com.zontreck.libzontreck.util.ChatHelpers; +import com.zontreck.libzontreck.util.ServerUtilities; +import com.zontreck.libzontreck.vectors.Vector2f; +import com.zontreck.libzontreck.vectors.Vector2i; +import net.minecraft.world.SimpleMenuProvider; +import net.minecraft.world.item.Item; +import net.minecraft.world.item.ItemStack; +import net.minecraftforge.common.MinecraftForge; +import net.minecraftforge.fml.LogicalSide; +import net.minecraftforge.items.ItemStackHandler; +import net.minecraftforge.network.NetworkHooks; + +import java.util.ArrayList; +import java.util.List; +import java.util.UUID; + +/** + * Zontreck's ChestGUI Interface + *